/** * Vibecarbon marketing homepage. * * Route: / */ import { useTranslation } from 'react-i18next'; import { CTAFooter } from '../components/CTAFooter'; import { FilmGrainOverlay } from '../components/effects/FilmGrainOverlay'; import { FAQSection } from '../components/FAQSection'; import Hero from '../components/Hero'; import { LogoStrip } from '../components/LogoStrip'; import { NewsletterSignup } from '../components/NewsletterSignup'; import { PillarsSection } from '../components/PillarsSection'; import { PricingSection } from '../components/PricingSection'; import { SEO } from '../components/SEO'; import { StackSection } from '../components/StackSection'; import { ScrollSection } from '../components/scroll/ScrollSection'; import { ScrollytellingProvider } from '../components/scroll/ScrollytellingProvider'; import FooterSection from '../components/sections/footer'; import VendorMatrix from '../components/sections/vendor-matrix'; import { WorkflowSection } from '../components/WorkflowSection'; function VibecarbonCTAFooter() { const { t } = useTranslation(); return ( <>

{t('landing.cta.headline')}

{t('landing.cta.subheading')}

); } export default function VibecarbonHome() { return (
); }