Started working on the welcome page!
This commit is contained in:
14
src/app/welcome/page.tsx
Normal file
14
src/app/welcome/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
12
src/components/welcome.tsx
Normal file
12
src/components/welcome.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user