diff --git a/app/page.tsx b/app/page.tsx index aefd19396..6cd9b17f5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,5 +1,6 @@ import { Carousel } from 'components/carousel'; import { ThreeItemGrid } from 'components/grid/three-items'; +import Hero from 'components/hero'; import Footer from 'components/layout/footer'; import { Suspense } from 'react'; @@ -15,6 +16,7 @@ export const metadata = { export default async function HomePage() { return ( <> + diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 000000000..2b6869aa9 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,27 @@ +import Link from 'next/link'; +import Navbar from './layout/navbar'; + +export default function Hero() { + return ( +
+ + + +
+ Blommor +
+ + +
+ Grönt +
+ +
+ ); +} diff --git a/public/hero.mp4 b/public/hero.mp4 new file mode 100644 index 000000000..337e01ac4 Binary files /dev/null and b/public/hero.mp4 differ