Files
www_maison_noire/src/app/gallery/page.jsx
2025-08-14 14:41:35 +02:00

21 lines
479 B
JavaScript

import { CallToAction3 } from '@/components/CallToAction3'
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import Story from '@/components/Story'
import Story2 from '@/components/Story2'
import Team from '@/components/Team'
import QuiltedImageList from '@/components/Gallery'
export default function OurStory() {
return (
<>
<Header />
<main>
<QuiltedImageList />
</main>
<Footer />
</>
)
}