Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/fonts/Geist-Variable.woff2
Binary file not shown.
Binary file added public/fonts/GeistMono-Variable.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/ui/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Badge = ({
return (
<span
className={cn(
'inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium',
'inline-flex items-center rounded-full px-2 py-0.5 text-xs font-semibold',
variants[variant],
className
)}
Expand Down
33 changes: 25 additions & 8 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
@import 'tailwindcss';
@import 'tw-animate-css';

/* Geist Sans Variable Font */
@font-face {
font-family: 'Geist';
src: url('/fonts/Geist-Variable.woff2') format('woff2');
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

/* Geist Mono Variable Font */
@font-face {
font-family: 'Geist Mono';
src: url('/fonts/GeistMono-Variable.woff2') format('woff2');
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

@custom-variant dark (&:is(.dark *));

@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
--font-mono: 'JetBrains Mono', ui-monospace, monospace;
--font-sans: 'Geist', system-ui, -apple-system, sans-serif;
--font-mono: 'Geist Mono', ui-monospace, monospace;

--color-ring: var(--ring);
--color-border: var(--border);
--color-accent: var(--accent);
Expand Down Expand Up @@ -73,16 +92,14 @@
html {
scroll-behavior: smooth;
}

* {
@apply border-border outline-ring/50;
}

body {
@apply bg-background text-foreground;
font-family:
'Inter',
system-ui,
-apple-system,
sans-serif;
@apply bg-background text-foreground antialiased;
font-family: var(--font-sans);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function HomePage() {
function LiquidGlassGradient() {
return (
<div className="pointer-events-none absolute inset-0 -z-10 overflow-hidden">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(255,255,255,0.9),_rgba(237,242,255,0.6))]" />
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(255,255,255,0.9),_rgba(237,242,255,0.55))]" />
<div className="absolute left-1/2 top-[-8rem] h-[44rem] w-[44rem] -translate-x-1/2 rounded-[50%] bg-white/80 blur-[140px] opacity-85 mix-blend-screen" />
<div className="absolute left-[12%] top-[22%] h-80 w-80 rounded-full bg-[#7fb0ff]/40 blur-[120px] mix-blend-screen" />
<div className="absolute right-[18%] top-[30%] h-[26rem] w-[24rem] rounded-[40%] bg-gradient-to-br from-[#ffdff3]/65 via-[#fff3f8]/45 to-transparent blur-[150px] mix-blend-screen" />
Expand Down