add new content

This commit is contained in:
2025-08-13 18:37:34 +02:00
commit 127bf9c83b
350 changed files with 63539 additions and 0 deletions

22
src/app/story/page.jsx Normal file
View File

@@ -0,0 +1,22 @@
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'
export default function OurStory() {
return (
<>
<Header />
<main>
<Story />
<Story2 />
<Team />
<CallToAction3 />
</main>
<Footer />
</>
)
}