Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -220,7 +220,7 @@ export default function DashboardPage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="opacity"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png?_wi=2"
|
||||
imageAlt="SocialFlow dashboard interface"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="opacity"
|
||||
|
||||
@@ -1,24 +1,58 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SocialFlow - Unified Social Media Management Platform",
|
||||
description: "Manage all your social media accounts in one dashboard. Schedule posts, get AI recommendations, track analytics, and collaborate with your team. Try free for 14 days.",
|
||||
keywords: "social media management, scheduling, analytics, multi-platform, content calendar, team collaboration",
|
||||
openGraph: {
|
||||
title: "SocialFlow - Manage All Your Social Media in One Place",
|
||||
description: "Connect all your social accounts and manage everything from one intelligent dashboard with AI-powered recommendations.",
|
||||
type: "website",
|
||||
siteName: "SocialFlow",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png",
|
||||
alt: "SocialFlow Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "SocialFlow - Unified Social Media Management",
|
||||
description: "Schedule, analyze, and optimize all your social media from one platform. AI-powered recommendations included.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="opacity"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Az4EP55I2KgZGDoqU3EFZ4Z8l4/a-comprehensive-social-media-management--1773582882316-d539fb16.png?_wi=1"
|
||||
imageAlt="SocialFlow dashboard interface"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="opacity"
|
||||
|
||||
Reference in New Issue
Block a user