From 579ace5cbe902bd975e803bedb402496af063534 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:25:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b9be609..3d0d6e3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Antigravity Portfolio Generator | Python-Powered Portfolio", description: "Build stunning, responsive portfolios with Antigravity. Automated generation using Python, Jinja2, TailwindCSS, and Markdown. Deploy to GitHub Pages or Netlify instantly.", keywords: "portfolio generator, python, portfolio builder, jinja2, tailwindcss, github pages, netlify, responsive design, markdown", metadataBase: new URL("https://antigravity-portfolio.dev"), - alternates: { - canonical: "https://antigravity-portfolio.dev"}, - openGraph: { - title: "Antigravity Portfolio Generator", description: "Create your perfect portfolio with automated generation and stunning design.", url: "https://antigravity-portfolio.dev", siteName: "Antigravity", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148379705.jpg", alt: "Antigravity Portfolio Generator"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Antigravity Portfolio Generator", description: "Build stunning portfolios with Python and automated generation", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148379705.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Antigravity - Portfolio Generator", description: "Create stunning, automated portfolios with cutting-edge tools and responsive design."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}