From 2c03ee104d06e1be712356efa06a8b3cbe2d09dc Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Tue, 19 Mar 2024 19:24:29 +0000 Subject: refactor: Move landing page to its own app to deploy it separately --- apps/landing/app/page.tsx | 90 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 apps/landing/app/page.tsx (limited to 'apps/landing/app/page.tsx') diff --git a/apps/landing/app/page.tsx b/apps/landing/app/page.tsx new file mode 100644 index 00000000..d87962bb --- /dev/null +++ b/apps/landing/app/page.tsx @@ -0,0 +1,90 @@ +import Image from "next/image"; +import Link from "next/link"; +import { Button, buttonVariants } from "@/components/ui/button"; +import { cn } from "@/lib/utils"; +import screenshot from "@/public/screenshot.png"; +import { ExternalLink, Github, PackageOpen } from "lucide-react"; + +const GITHUB_LINK = "https://github.com/MohamedBassem/hoarder-app"; + +function NavBar() { + return ( +
+
+ +

Hoarder

+
+
+ + Docs + + + Github + +
+
+ ); +} + +function Hero() { + return ( +
+
+

+ The{" "} + + Bookmark Everything + {" "} + App +

+
+

+ Quickly save links, notes, and images and hoarder will automatically + tag them for you using AI for faster retrieval. Built for the data + hoarders out there! +

+

+ Open source, and self hostable! +

+
+
+
+ + + Github + +
+
+ ); +} + +function Screenshots() { + return ( +
+ screenshot +
+ ); +} + +export default function LandingPage() { + return ( +
+
+ + +
+ +
+ ); +} -- cgit v1.2.3-70-g09d2