Skip to content

Commit e6aa45f

Browse files
main page
1 parent 084cc4f commit e6aa45f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/app/page.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
import Footer from '@/components/footer/Footer'
2+
import Navigation from '@/components/navigation/Navigation'
3+
14
export default function Home() {
2-
return <div className="">Hello World!</div>
5+
return (
6+
<div className="min-h-svh flex flex-col items-center justify-start bg-gradient-to-b from-stone-700 to-stone-800">
7+
<Navigation />
8+
<Footer />
9+
</div>
10+
)
311
}

0 commit comments

Comments
 (0)