27 lines
737 B
TypeScript
27 lines
737 B
TypeScript
"use client";
|
|
import Banner from "./components/banner/banner";
|
|
import HeroShrimp from "./components/hero-shrimp/hero-shrimp";
|
|
import SeafoodDelights from "./components/seafood-delights/seafood-delights";
|
|
import ShrimpFeet from "./components/shrimp-feet/shrimp-feet";
|
|
import ShrimpProjects from "./components/shrimp-projects/shrimp-projects";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<Banner />
|
|
<SeafoodDelights />
|
|
<HeroShrimp />
|
|
<ShrimpProjects />
|
|
<ShrimpFeet />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/* todo list
|
|
- more shrimpy font
|
|
- shrimp profiles (about us)
|
|
- menu i guess, hamburger, but the lines are waves
|
|
- animations
|
|
- shirmp cursor for hover - colour swap
|
|
*/
|