From 27db451d4a6588ae7cda1bca26b9575e9b2b401a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:45:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 -------------------------------------------- 1 file changed, 1422 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a69c854..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Adriano Talavera | Copywriter & Email Marketer", description: "I help founders and creators turn good ideas into copy that connects, converts, and sounds human. Email marketing, sales copy, brand voice strategy. 90% email open rates.", keywords: "copywriter, email marketer, conversion copy, brand voice, LinkedIn marketing, entrepreneur, Netherlands", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Adriano Talavera | Copywriter & Email Marketer", description: "I help founders and creators turn good ideas into copy that connects, converts, and sounds human.", siteName: "Adriano Talavera", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/dark-blonde-bearded-man-crosses-his-hands-chest-posing-black-shirt_8353-1116.jpg", alt: "Adriano Talavera"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Adriano Talavera | Copywriter & Email Marketer", description: "I help founders and creators turn good ideas into copy that connects, converts, and sounds human.", images: ["http://img.b2bpic.net/free-photo/dark-blonde-bearded-man-crosses-his-hands-chest-posing-black-shirt_8353-1116.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -