Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-14 07:24:06 +00:00
5 changed files with 53 additions and 14 deletions

View File

@@ -47,7 +47,7 @@ export default function AboutPage() {
tag="Our Story"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/students-trying-understand-their-teacher_273609-12535.jpg"
imageSrc="http://img.b2bpic.net/free-photo/students-trying-understand-their-teacher_273609-12535.jpg?_wi=2"
imageAlt="SocialVibe team collaborating on strategies"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -180,7 +180,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg"
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg?_wi=2"
imageAlt="SocialVibe office environment"
logoText="SocialVibe"
copyrightText="© 2024 SocialVibe Agency. All rights reserved."

View File

@@ -172,7 +172,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg"
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg?_wi=4"
imageAlt="modern office workspace environment"
logoText="SocialVibe"
copyrightText="© 2024 SocialVibe Agency. All rights reserved."

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 { Lato } 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 lato = Lato({
variable: "--font-lato",
@@ -20,6 +24,39 @@ const lato = Lato({
weight: ["100", "300", "400", "700", "900"]
});
export const metadata: Metadata = {
title: "Premium Social Media Agency | SocialVibe",
description: "Transform your brand with proven social media strategies. Expert content creation, paid ads, and community management for 50+ brands.",
keywords: "social media agency, social media marketing, content creation, Instagram marketing, TikTok strategy, brand growth",
metadataBase: new URL("https://socialvibe.agency"),
alternates: {
canonical: "https://socialvibe.agency",
},
openGraph: {
title: "Premium Social Media Agency | SocialVibe",
description: "Turn your social media presence into a revenue-generating asset with expert strategies and creative excellence.",
url: "https://socialvibe.agency",
siteName: "SocialVibe",
type: "website",
images: [
{
url: "https://socialvibe.agency/og-image.jpg",
alt: "SocialVibe Social Media Agency",
},
],
},
twitter: {
card: "summary_large_image",
title: "Premium Social Media Agency | SocialVibe",
description: "Expert social media strategies that drive growth and engagement.",
images: ["https://socialvibe.agency/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -88,7 +88,7 @@ export default function HomePage() {
tag="Our Story"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/students-trying-understand-their-teacher_273609-12535.jpg"
imageSrc="http://img.b2bpic.net/free-photo/students-trying-understand-their-teacher_273609-12535.jpg?_wi=1"
imageAlt="SocialVibe team collaborating on strategies"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -322,7 +322,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg"
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg?_wi=1"
imageAlt="SocialVibe office environment"
logoText="SocialVibe"
copyrightText="© 2024 SocialVibe Agency. All rights reserved."

View File

@@ -262,7 +262,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg"
imageSrc="http://img.b2bpic.net/free-photo/team-people-drinking-coffee_23-2147668849.jpg?_wi=3"
imageAlt="modern office workspace environment"
logoText="SocialVibe"
copyrightText="© 2024 SocialVibe Agency. All rights reserved."