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 ( +
+ +
+ ); +} 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!

+
+ ); +}