diff --git a/landing/src/app/layout.tsx b/landing/src/app/layout.tsx index fb9e625a..f29ef15e 100644 --- a/landing/src/app/layout.tsx +++ b/landing/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; +import { Banner } from '@/components/Banner'; import { Footer } from '@/components/Footer'; import { Header } from '@/components/Header'; @@ -31,6 +32,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
+
{children} diff --git a/landing/src/components/Banner.tsx b/landing/src/components/Banner.tsx new file mode 100644 index 00000000..f3aee3f2 --- /dev/null +++ b/landing/src/components/Banner.tsx @@ -0,0 +1,25 @@ +import { ArrowRight } from 'lucide-react'; + +export function Banner() { + return ( +
+ +
+ ); +}