Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d0d11c10f7 | |||
| 819423a0bb | |||
| 7c7bca6e02 | |||
| 3525b12b68 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user