Newsletter Footer
A complete newsletter footer section, ready to adapt to your product.
Make it yours.
Install the editable source and its dependencies into your React + Tailwind project.
Scroll horizontally for long lines
pnpm dlx shadcn@4.0.8 add http://localhost:3000/r/newsletter-footer.jsonUse it
Scroll horizontally for long lines
"use client";
import { NewsletterFooter } from "@/components/jez-ui/blocks/newsletter-footer";
export default function Example() {
return (
<>
<NewsletterFooter />
</>
);
}
Compose your own
These styled parts are included in the same install. Use children to build your layout; add className only when you want an override.
Scroll horizontally for long lines
import { NewsletterFooter, NewsletterFooterContent, NewsletterFooterHeader } from "@/components/jez-ui/blocks/newsletter-footer";Props & types
Scroll horizontally for long lines
export type NewsletterFooterOptions = {
className?: string;
brand?: string;
groups?: FooterLinkGroup[];
onSubmit?: (email: string) => Promise<void>;
};
export type NewsletterFooterProps = Omit<
React.ComponentProps<"footer">,
keyof NewsletterFooterOptions
> &
NewsletterFooterOptions;
NewsletterFooterPropsSource
View 6 source files
registry/blocks/newsletter-footer.tsx
Scroll horizontally for long lines
"use client";
import * as React from "react";
import { cn } from "../ui/utils";
import { NewsletterSignup } from "./newsletter-signup";
import { FooterLinks, type FooterLinkGroup } from "./footer-links";
export type NewsletterFooterOptions = {
className?: string;
brand?: string;
groups?: FooterLinkGroup[];
onSubmit?: (email: string) => Promise<void>;
};
export type NewsletterFooterProps = Omit<
React.ComponentProps<"footer">,
keyof NewsletterFooterOptions
> &
NewsletterFooterOptions;
export function NewsletterFooter({
className,
brand = "Fieldnotes",
groups,
onSubmit,
children,
...rootProps
}: NewsletterFooterProps) {
return (
<footer
{...rootProps}
className={cn("border-t border-border py-8", className)}
>
{children !== undefined ? (
children
) : (
<>
<NewsletterFooterContent>
<NewsletterSignup onSubmit={onSubmit} />
<FooterLinks groups={groups} />
</NewsletterFooterContent>
<NewsletterFooterHeader>
<span className="text-2xl font-medium">{brand}</span>
<span className="text-xs text-muted-foreground">
A Jez UI demo publication.
</span>
</NewsletterFooterHeader>
</>
)}
</footer>
);
}
export function NewsletterFooterContent({
className,
...props
}: React.ComponentProps<"div">) {
return (
<div
data-slot="newsletter-footer-content"
className={cn(
"grid items-center gap-10 lg:grid-cols-[1.3fr_1fr]",
className,
)}
{...props}
/>
);
}
export function NewsletterFooterHeader({
className,
...props
}: React.ComponentProps<"div">) {
return (
<div
data-slot="newsletter-footer-header"
className={cn(
"mt-8 flex flex-wrap items-center justify-between gap-4 border-t border-border pt-6",
className,
)}
{...props}
/>
);
}
registry/ui/utils.ts
Scroll horizontally for long lines
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...values: ClassValue[]) {
return twMerge(clsx(values));
}
registry/blocks/newsletter-signup.tsx
Scroll horizontally for long lines
"use client";
import * as React from "react";
import { cn } from "../ui/utils";
import { ArrowUpRight, Mail } from "lucide-react";
import { Input } from "../ui/input";
import { Button } from "../ui/button";
export type NewsletterSignupOptions = {
className?: string;
onSubmit?: (email: string) => Promise<void>;
heading?: React.ReactNode;
description?: React.ReactNode;
};
export type NewsletterSignupProps = Omit<
React.ComponentProps<"form">,
keyof NewsletterSignupOptions
> &
NewsletterSignupOptions;
export function NewsletterSignup({
heading = (
<>
Good work starts
<br />
with a good read.
</>
),
description = (
<>
A monthly edit of design discoveries, work in progress, and things worth
keeping. Written by people who make things.
</>
),
className,
onSubmit,
children,
...rootProps
}: NewsletterSignupProps) {
const [status, setStatus] = React.useState("");
const [busy, setBusy] = React.useState(false);
return (
<form
{...rootProps}
className={cn(
"relative grid gap-5 overflow-hidden rounded-2xl border border-border bg-muted/30 p-7 sm:p-10",
className,
)}
onSubmit={async (e) => {
e.preventDefault();
setBusy(true);
const email = String(new FormData(e.currentTarget).get("email"));
try {
await onSubmit?.(email);
setStatus(
onSubmit
? "You’re on the list."
: "Demo complete. No email was sent.",
);
} catch {
setStatus("Unable to subscribe. Please try again.");
} finally {
setBusy(false);
}
}}
>
{children !== undefined ? (
children
) : (
<>
<NewsletterSignupContent>
<Mail size={15} />
The studio dispatch
</NewsletterSignupContent>
<NewsletterSignupTitle>{heading}</NewsletterSignupTitle>
<NewsletterSignupDescription>
{description}
</NewsletterSignupDescription>
<div className="mt-2 flex max-w-lg flex-col gap-2 sm:flex-row">
<Input
type="email"
name="email"
required
aria-label="Email address"
placeholder="you@example.com"
/>
<Button type="submit" loading={busy}>
Subscribe <ArrowUpRight size={16} />
</Button>
</div>
<p className="text-xs text-muted-foreground">
One email a month. Unsubscribe whenever you like.
</p>
{status && (
<p role="status" className="text-sm">
{status}
</p>
)}
</>
)}
</form>
);
}
export function NewsletterSignupContent({
className,
...props
}: React.ComponentProps<"div">) {
return (
<div
data-slot="newsletter-signup-content"
className={cn(
"flex items-center gap-2 text-xs font-medium uppercase tracking-widest text-muted-foreground",
className,
)}
{...props}
/>
);
}
export function NewsletterSignupTitle({
className,
...props
}: React.ComponentProps<"h2">) {
return (
<h2
data-slot="newsletter-signup-title"
className={cn(
"max-w-lg font-display text-3xl leading-tight sm:text-4xl",
className,
)}
{...props}
/>
);
}
export function NewsletterSignupDescription({
className,
...props
}: React.ComponentProps<"p">) {
return (
<p
data-slot="newsletter-signup-description"
className={cn(
"max-w-md text-sm leading-relaxed text-muted-foreground",
className,
)}
{...props}
/>
);
}
registry/ui/input.tsx
Scroll horizontally for long lines
"use client";
import * as React from "react";
import { cn } from "./utils";
export function Input({ className, ...props }: React.ComponentProps<"input">) {
return (
<input
className={cn(
"block h-10 w-full min-w-0 rounded-lg border border-border bg-background px-3 text-sm leading-normal shadow-[0_1px_2px_#00000004] transition-[border-color,box-shadow] placeholder:text-muted-foreground/75 hover:border-foreground/25 focus:border-primary focus:outline-none focus:ring-3 focus:ring-primary/10 aria-invalid:border-danger aria-invalid:ring-danger/10 disabled:cursor-not-allowed disabled:bg-muted/50 disabled:opacity-50",
className,
)}
{...props}
/>
);
}
registry/ui/button.tsx
Scroll horizontally for long lines
"use client";
import * as React from "react";
import { Slot } from "radix-ui";
import { LoaderCircle } from "lucide-react";
import { cn } from "./utils";
export type ButtonProps = React.ComponentProps<"button"> & {
variant?: "primary" | "secondary" | "outline" | "ghost" | "danger";
size?: "sm" | "md" | "lg";
loading?: boolean;
asChild?: boolean;
};
export function Button({
variant = "primary",
size = "md",
loading,
asChild,
className,
children,
disabled,
...props
}: ButtonProps) {
const Comp = asChild ? Slot.Root : "button";
return (
<Comp
type={asChild ? undefined : "button"}
disabled={asChild ? undefined : disabled || loading}
aria-disabled={disabled || loading || undefined}
aria-busy={loading || undefined}
className={cn(
"relative inline-flex shrink-0 items-center justify-center gap-2 whitespace-nowrap rounded-lg border border-transparent text-sm font-medium leading-none transition-[background-color,border-color,box-shadow,transform] duration-150 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary active:scale-[.98] disabled:pointer-events-none disabled:opacity-45 aria-disabled:pointer-events-none [&_svg]:shrink-0",
{
"bg-primary text-primary-foreground shadow-[inset_0_1px_0_#ffffff26,0_1px_2px_#00000012] hover:bg-primary/90":
variant === "primary",
"border-border/60 bg-muted text-foreground hover:bg-muted/70":
variant === "secondary",
"border-border bg-background text-foreground shadow-sm hover:bg-muted/60":
variant === "outline",
"text-muted-foreground hover:bg-muted hover:text-foreground":
variant === "ghost",
"bg-danger text-danger-foreground hover:bg-danger/90":
variant === "danger",
},
{
"h-8 px-3 text-xs": size === "sm",
"h-10 px-4": size === "md",
"h-12 px-6": size === "lg",
},
className,
)}
{...props}
>
{asChild ? (
children
) : (
<>
<span
className={cn(
"inline-flex min-w-0 flex-1 items-center justify-center gap-2",
loading && "invisible",
)}
>
{children}
</span>
{loading && (
<LoaderCircle
aria-hidden="true"
className="absolute size-4 animate-spin motion-reduce:animate-none"
/>
)}
</>
)}
</Comp>
);
}
registry/blocks/footer-links.tsx
Scroll horizontally for long lines
"use client";
import * as React from "react";
export type FooterLinkGroup = {
title: string;
links: { label: string; href: string }[];
};
export const defaultFooterGroups: FooterLinkGroup[] = [
{
title: "Explore",
links: [
{ label: "Components", href: "/components" },
{ label: "Blocks", href: "/blocks" },
{ label: "Templates", href: "/templates" },
],
},
{
title: "Resources",
links: [
{ label: "Documentation", href: "/docs" },
{ label: "Installation", href: "/docs/installation" },
],
},
];
export function FooterLinks({
groups = defaultFooterGroups,
}: {
groups?: FooterLinkGroup[];
}) {
return (
<nav aria-label="Footer" className="grid grid-cols-2 gap-8">
{groups.map((g) => (
<div key={g.title}>
<h3 className="mb-4 text-sm font-medium">{g.title}</h3>
<ul className="space-y-3">
{g.links.map((l) => (
<li key={l.href}>
<a
className="text-sm opacity-80 hover:underline hover:opacity-100"
href={l.href}
>
{l.label}
</a>
</li>
))}
</ul>
</div>
))}
</nav>
);
}
Dependencies
clsx@2.1.1 · tailwind-merge@3.5.0 · lucide-react@0.577.0 · radix-ui@1.6.7
Accessibility & behaviour
Provide meaningful labels and preserve keyboard focus styles. Check contrast when customising theme colours.
Read the accessibility and performance guide →