import type { Metadata } from "next";
import { Lato } from "next/font/google";
import "./globals.css";
import { cn } from "@/lib/utils";
import AOS from "aos";
import "aos/dist/aos.css";
import { useEffect } from "react";
const lato = Lato({
subsets: ["latin"],
weight: ["400", "700", "900"],
variable: "--font-lato",
});
export const metadata: Metadata = {
title: "Swift Premium | Cheats",
description: "Discover Swift Premium Cheats - innovative, fast, and efficient cheats to help you stay ahead in your games. Read customer reviews and explore our cheat range.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
{children}
);
}