Components
Loading preview...
NeoMinimalFooter is a sleek, modern, and minimalistic footer component designed for tech-focused or modern web applications. It combines branding, navigational links, a newsletter/signup input, and social media icons, all within a visually appealing layout.
@m.kumailalirajpoot
npx shadcn@latest add https://21st.dev/r/m.kumailalirajpoot/neo-minimal-footerimport { NeoMinimalFooter } from "@/components/ui/neo-minimal-footer";
import { ArrowDown } from "lucide-react";
export default function DemoOne() {
return (
<div className="flex w-full overflow-x-hidden flex-col">
{/* Fullscreen Hero Section */}
<div className="h-screen flex flex-col justify-center items-center bg-backgrund text-white">
<p className="font-mono text-3xl text-center mb-8">
Scroll Down
</p>
{/* Animated Arrow */}
<ArrowDown className="w-10 h-10 animate-bounce text-cyan-500" />
</div>
{/* Footer Section */}
<NeoMinimalFooter />
</div>
);
}