"use client"; import React from "react"; import { m } from "framer-motion"; import { Reveal } from "../Reveal"; import { Counter } from "../Counter"; import { TechBackground } from "../TechBackground"; import { Button } from "../Button"; import { useTranslations } from "next-intl"; export const CTASection = () => { const t = useTranslations("Index"); return (
{/* Decorative Background Elements */}
{/* Corner Accents */}

{t("cta.title")}

{t("cta.subtitle")}

); };