import type { Metadata } from "next"; import { Inter, Podkova } from "next/font/google"; import "./globals.css"; import React from "react"; import Link from "next/link"; import { Button } from "@/components/button"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter", display: "swap", }); const podkova = Podkova({ subsets: ["latin"], variable: "--font-podkova", display: "swap", }); export const metadata: Metadata = { title: { default: "Techaro Computing Canada", template: "%s | Techaro", }, openGraph: { locale: "en-US", }, description: "Your one-stop shop for all your computing needs.", alternates: { types: { "application/rss+xml": "/blog.rss", }, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }