aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/components
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2025-04-06 22:57:07 +0100
committerMohamedBassem <me@mbassem.com>2025-04-06 22:57:07 +0100
commit3f2d3560dc04dbee23237d896c1325389035c738 (patch)
treee683bade56297162394075d7ad306c4578ea3c99 /apps/landing/components
parent4e32b409a925136ed575b32abe3c8d6028dbc1fb (diff)
downloadkarakeep-3f2d3560dc04dbee23237d896c1325389035c738.tar.zst
refactor: Migrate the landing page from nextjs to vite
Diffstat (limited to '')
-rw-r--r--apps/landing/components.json2
-rw-r--r--apps/landing/components/HoarderLogo.tsx9
2 files changed, 1 insertions, 10 deletions
diff --git a/apps/landing/components.json b/apps/landing/components.json
index fa674c93..698ac253 100644
--- a/apps/landing/components.json
+++ b/apps/landing/components.json
@@ -5,7 +5,7 @@
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
- "css": "app/globals.css",
+ "css": "src/styles.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
diff --git a/apps/landing/components/HoarderLogo.tsx b/apps/landing/components/HoarderLogo.tsx
deleted file mode 100644
index 94c201e9..00000000
--- a/apps/landing/components/HoarderLogo.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import KarakeepFull from "@/public/icons/karakeep-full.svg";
-
-export default function HoarderLogo({ height }: { height: number }) {
- return (
- <span className="flex items-center">
- <KarakeepFull height={height} className={`fill-foreground`} />
- </span>
- );
-}