chore: spacing

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2025-06-24 17:45:23 +05:30
parent c0946fc285
commit d5332715f7
3 changed files with 4 additions and 3 deletions

View file

@ -72,7 +72,7 @@ export default async function BlogList() {
<main className="flex flex-1 flex-col justify-end items-center font-[family-name:var(--font-spacegrotesk-sans)] pt-10 md:pt-30 pb-25 md:pb-0"> <main className="flex flex-1 flex-col justify-end items-center font-[family-name:var(--font-spacegrotesk-sans)] pt-10 md:pt-30 pb-25 md:pb-0">
<h1 className="text-5xl bold text-red-500">Blogs</h1> <h1 className="text-5xl bold text-red-500">Blogs</h1>
<div className="min-h-screen pt-10"> <div className="pt-10">
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 max-w-6xl mx-auto"> <div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 max-w-6xl mx-auto">
{articles.map((article, idx) => ( {articles.map((article, idx) => (
<Link key={idx} href={`/blog${article.link}`}> <Link key={idx} href={`/blog${article.link}`}>

View file

@ -67,7 +67,8 @@ export default function RootLayout({
<GSAPCursor /> <GSAPCursor />
<NavigationMenu /> <NavigationMenu />
{children} {children}
<footer className="flex"></footer> <footer className="flex justify-center">
</footer>
</div> </div>
</ThemeProvider> </ThemeProvider>
</body> </body>

View file

@ -3,7 +3,7 @@ import { World } from "@/components/PhysicsSimulation";
export default function Home() { export default function Home() {
return ( return (
<main className="flex flex-col items-center justify-start pt-15 h-screen"> <main className="flex flex-col items-center justify-start pt-15">
<> <>
<World /> <World />