first commit

This commit is contained in:
2026-07-30 12:15:17 +03:00
commit 1f29eead28
48 changed files with 10666 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import Navigation from '@/components/Navigation'
import CloudRevealSection from '@/components/sections/CloudRevealSection'
import AboutSection from '@/components/sections/AboutSection'
import AmenitiesSection from '@/components/sections/AmenitiesSection'
import LocationSection from '@/components/sections/LocationSection'
import UnitsSection from '@/components/sections/UnitsSection'
import GallerySection from '@/components/sections/GallerySection'
import ContactSection from '@/components/sections/ContactSection'
import Footer from '@/components/Footer'
export default async function HomePage({
params,
}: {
params: Promise<{ locale: string }>
}) {
const { locale } = await params
return (
<main>
<Navigation locale={locale} />
<CloudRevealSection />
<AboutSection />
<AmenitiesSection />
<LocationSection />
<UnitsSection />
<GallerySection />
<ContactSection />
<Footer locale={locale} />
</main>
)
}