From f2648b9a2071fa2c08842c3eed266348fd93c5bb Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Thu, 11 Jul 2024 13:48:38 +0200 Subject: [PATCH] Started working on the welcome page! --- src/app/welcome/page.tsx | 14 ++++++++++++++ src/components/welcome.tsx | 12 ++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/app/welcome/page.tsx create mode 100644 src/components/welcome.tsx diff --git a/src/app/welcome/page.tsx b/src/app/welcome/page.tsx new file mode 100644 index 0000000..c7b402d --- /dev/null +++ b/src/app/welcome/page.tsx @@ -0,0 +1,14 @@ + +import WelcomePage from "@/components/welcome"; +import Footer from "@/components/footer"; +import { Navigation } from "@/components/navigation"; + +export default function Download() { + return ( +
+ +
+ {/* At the bottom of the page */} +
+ ); +} diff --git a/src/components/welcome.tsx b/src/components/welcome.tsx new file mode 100644 index 0000000..85063a8 --- /dev/null +++ b/src/components/welcome.tsx @@ -0,0 +1,12 @@ +"use client"; + +import WordPullUp from "./ui/word-pull-up"; + +export default function WelcomePage() { + return ( +
+ +

A Firefox based browser with a focus on privacy and customization.
Start using it by clicking on the sidebar icon or trying out the split view feature!

+
+ ); +}