diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..fbcfccb --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,91 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function GalleryPage() { + return ( + + + +
+ +
+ + + + +
+ ); +}