diff --git a/src/app/empathy/page.tsx b/src/app/empathy/page.tsx new file mode 100644 index 0000000..c25412f --- /dev/null +++ b/src/app/empathy/page.tsx @@ -0,0 +1,156 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Heart, Users, Lightbulb, Send, Music } from 'lucide-react'; + +export default function EmpathyPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file