page.tsx
footer-one.tsx
animation-container.tsx
import FooterOne from "@/components/footer-one";
export default function Page() {
return (
<div className="mt-10">
<FooterOne />
</div>
);
}
page.tsx
footer-two.tsx
import FooterTwo from "@/components/footer-two";
export default function Page() {
return <FooterTwo />;
}
page.tsx
footer-three.tsx
import FooterThree from "@/components/footer-three";
export default function Page() {
return <FooterThree />;
}