add build start scripts

This commit is contained in:
2025-08-14 14:41:35 +02:00
parent bc9aa8f8c1
commit f1cb4adcc8
97 changed files with 1029 additions and 5399 deletions

20
src/app/gallery/page.jsx Normal file
View File

@@ -0,0 +1,20 @@
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 />
</>
)
}