diff --git a/client/src/components/ui/featureBox.tsx b/client/src/components/ui/featureBox.tsx
new file mode 100644
index 0000000..c9d09f4
--- /dev/null
+++ b/client/src/components/ui/featureBox.tsx
@@ -0,0 +1,37 @@
+import * as React from "react";
+
+interface contents {
+ title: string;
+ text: string;
+ hOffset: number;
+}
+
+function FeatureBox({ title, text, hOffset }: contents): React.JSX.Element {
+ return (
+ <>
+
+ >
+ );
+}
+
+export default FeatureBox;
diff --git a/client/src/styles/globals.css b/client/src/styles/globals.css
index 616c2b1..74b095a 100644
--- a/client/src/styles/globals.css
+++ b/client/src/styles/globals.css
@@ -28,6 +28,9 @@
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 100%;
+ --dark: 260, 52.38%, 12.35%;
+ --dark-foreground: 0 0% 100%;
+
--border: 235 47% 20%;
--input: 235 47% 20%;
--ring: 236 47% 7%;
diff --git a/client/tailwind.config.ts b/client/tailwind.config.ts
index 703a9f5..fb69f0b 100644
--- a/client/tailwind.config.ts
+++ b/client/tailwind.config.ts
@@ -59,6 +59,10 @@ const config = {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
+ dark: {
+ DEFAULT: "hsl(var(--dark))",
+ foreground: "hsl(var(--dark-foreground))"
+ }
},
borderRadius: {
lg: "var(--radius)",