Skip to content

Commit 957ffde

Browse files
committed
made headings larger
1 parent cecea64 commit 957ffde

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/(marketing)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ export default function Home() {
4747

4848
{/* Features Section */}
4949
<section className="container max-w-6xl mx-auto ">
50-
<div className="grid grid-cols-2 gap-6 items-center">
50+
<div className="grid grid-cols-2 items-center">
5151
<div>
5252
<H3>Why Use RetroUI?</H3>
53-
<H2 className="text-9xl mt-4">Coz We C0000l!! </H2>
53+
<H1 className="mt-4">Coz We C00l!!</H1>
5454
</div>
5555

5656
<img

packages/ui/Typography/H1.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ interface HeadingProps extends HTMLAttributes<HTMLHeadingElement> {
66

77
export function H1({ children, className }: HeadingProps) {
88
return (
9-
<h1 className={`font-head text-6xl font-bold ${className}`}>{children}</h1>
9+
<h1 className={`font-head text-7xl font-bold ${className}`}>{children}</h1>
1010
);
1111
}

packages/ui/Typography/H2.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import React, { HTMLAttributes, ReactNode } from "react";
1+
import React, { HTMLAttributes } from "react";
22

33
interface HeadingProps extends HTMLAttributes<HTMLHeadingElement> {
44
className?: string;
55
}
66

77
export function H2({ children, className }: HeadingProps) {
88
return (
9-
<h2 className={`font-head text-4xl font-semibold ${className}`}>
9+
<h2 className={`font-head text-5xl font-semibold ${className}`}>
1010
{children}
1111
</h2>
1212
);

0 commit comments

Comments
 (0)