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

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>
);
}