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} - -