Footer Simple
Footer Simple is a React and Tailwind CSS layout component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
layout
What it is
Footer Simple is a React and Tailwind CSS layout component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
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>
);
};