diff --git a/src/app/calm/page.tsx b/src/app/calm/page.tsx new file mode 100644 index 0000000..6a185d1 --- /dev/null +++ b/src/app/calm/page.tsx @@ -0,0 +1,158 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Heart, Volume2, Wind, Waves, Music, Send } from 'lucide-react'; + +export default function CalmPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file