Started working on the welcome page!

This commit is contained in:
Mauro Balades
2024-07-11 13:48:38 +02:00
parent 75beedfbff
commit f2648b9a20
2 changed files with 26 additions and 0 deletions

14
src/app/welcome/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import WelcomePage from "@/components/welcome";
import Footer from "@/components/footer";
import { Navigation } from "@/components/navigation";
export default function Download() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<WelcomePage />
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}

View File

@@ -0,0 +1,12 @@
"use client";
import WordPullUp from "./ui/word-pull-up";
export default function WelcomePage() {
return (
<div className="w-full relative min-h-screen flex flex-col items-center justify-center">
<WordPullUp className="text-6xl text-center" words="Welcome to Zen Browser!" />
<p className="max-w-90 text-lg mt-12">A Firefox based browser with a focus on privacy and customization.<br/>Start using it by clicking on the sidebar icon or trying out the split view feature!</p>
</div>
);
}