diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f174208..a48e8ca 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TaskFlow - Task Management & Calendar Dashboard", description: "Organize your tasks and mark important events on your calendar. TaskFlow combines powerful task management with integrated calendar viewing for ultimate productivity.", keywords: "task management, to-do list, calendar, productivity, task tracking, project management", openGraph: { - title: "TaskFlow - Organize Tasks & Calendar", description: "Combine task management with calendar integration for better productivity.", siteName: "TaskFlow", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEjsijzZRZpLbgN4XPEuIuUZX/complete-taskflow-dashboard-screenshot-s-1772761681585-f32983f4.png", alt: "TaskFlow Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TaskFlow - Task Management Dashboard", description: "Organize tasks and mark important dates on your calendar.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEjsijzZRZpLbgN4XPEuIuUZX/a-modern-task-management-dashboard-with--1772761680823-bcc821f8.png"], - }, -}; + title: "TaskFlow - Online Dashboard for To-Do Management", description: "Organize your tasks and mark important tasks on a calendar with TaskFlow's intuitive online dashboard."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}