Footer Simple
Footer Simple é um componente de layout para React e Tailwind CSS, da biblioteca UI Layouts, com licença MIT. Copia e cola no teu projeto.
UI Layouts
MIT
layout
O que é
Footer Simple é um componente de layout para React e Tailwind CSS, da biblioteca UI Layouts, com licença MIT. Copia e cola no teu projeto.
Como usar
Abre o componente no catálogo, carrega em copiar, e cola no teu projeto. O prompt copiado leva o código e as regras para o teu agente o reproduzir sem alterar nada.
Cinco cópias grátis por mês. Sem cartão.
Precisa de
npm i motion
Licença
Este componente vem de UI Layouts e é redistribuído sob a licença MIT, que permite uso comercial. O aviso de copyright viaja com o código.
Footer Simple
import React from 'react'
export const FooterSimple = () => {
return (
<footer className="bg-white text-black px-6 py-20 min-h-screen">
<div className="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-start gap-12">
<div className="space-y-6">
<div className="text-2xl font-bold">UI-LAYOUTS.</div>
<p className="text-zinc-500 max-w-xs text-pretty">
Redefining the digital frontier with elegance and precision.
</p>
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 gap-16">
<div className="space-y-4">
<div className="font-bold text-sm uppercase tracking-widest text-zinc-400">
Social
</div>
<div className="flex flex-col gap-2 text-sm text-zinc-600">
<a href="#" className="hover:text-black">
Twitter
</a>
<a href="#" className="hover:text-black">
LinkedIn
</a>
<a href="#" className="hover:text-black">
Instagram
</a>
</div>
</div>
<div className="space-y-4">
<div className="font-bold text-sm uppercase tracking-widest text-zinc-400">
Legal
</div>
<div className="flex flex-col gap-2 text-sm text-zinc-600">
<a href="#" className="hover:text-black">
Privacy
</a>
<a href="#" className="hover:text-black">
Terms
</a>
</div>
</div>
</div>
</div>
<div className="max-w-7xl mx-auto mt-20 pt-8 border-t border-zinc-50 text-xs text-zinc-400 flex justify-between">
<span>© 2026 UI-Layouts. All rights reserved.</span>
<span>Made with Precision.</span>
</div>
</footer>
)
}
import type { Variants } from 'motion/react';
import { type HTMLMotionProps, motion, useInView } from 'motion/react';
import type React from 'react';
type TimelineContentProps<T extends keyof HTMLElementTagNameMap> = {
children?: React.ReactNode;
animationNum: number;
className?: string;
timelineRef: React.RefObject<HTMLElement | null>;
as?: T;
customVariants?: Variants;
once?: boolean;
} & HTMLMotionProps<T>;
export const TimelineAnimation = <T extends keyof HTMLElementTagNameMap = 'div'>({
children,
animationNum,
timelineRef,
className,
as,
customVariants,
once = true,
...props
}: TimelineContentProps<T>) => {
const defaultSequenceVariants = {
visible: (i: number) => ({
filter: 'blur(0px)',
y: 0,
opacity: 1,
transition: {
delay: i * 0.5,
duration: 0.5,
},
}),
hidden: {
filter: 'blur(20px)',
y: 0,
opacity: 0,
},
};
const sequenceVariants = customVariants || defaultSequenceVariants;
const isInView = useInView(timelineRef, {
once,
});
const MotionComponent = motion[as || 'div'] as React.ElementType;
return (
<MotionComponent
initial='hidden'
animate={isInView ? 'visible' : 'hidden'}
custom={animationNum}
variants={sequenceVariants}
className={className}
{...props}
>
{children}
</MotionComponent>
);
};