File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import Logomark from "@/components/logomark" ;
2- import { appName } from "@/lib/const" ;
1+ import Welcome from "@/components/welcome" ;
32
43export default function Page ( ) {
54 return (
6- < div className = "flex flex-col items-center justify-center p-24" >
7- < div className = "text-center" >
8- < Logomark />
9- < h1 className = "text-4xl font-bold mt-4" > Welcome to { appName } </ h1 >
10- < p className = "text-lg mt-2 text-muted-foreground" >
11- Get started by building out your dashboard.
12- </ p >
13- </ div >
14- </ div >
5+ < Welcome />
156 ) ;
167}
Original file line number Diff line number Diff line change 1+ import { appName } from "@/lib/const" ;
2+ import Logomark from "./logomark" ;
3+
4+ export default function Welcome ( ) {
5+ return (
6+ < div className = "flex flex-col items-center justify-center p-24" >
7+ < div className = "text-center" >
8+ < Logomark />
9+ < h1 className = "text-3xl font-bold mt-4" > Welcome to { appName } </ h1 >
10+ < p className = "mt-2 text-muted-foreground" >
11+ Get started by building out your dashboard.
12+ </ p >
13+ </ div >
14+ </ div >
15+ )
16+ }
You can’t perform that action at this time.
0 commit comments