Merge version_1 into main #1
@@ -86,7 +86,7 @@ export default function AboutPage() {
|
||||
{ value: "10+", title: "Years of Industry Experience" },
|
||||
{ value: "500+", title: "Brands Successfully Transformed" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg?_wi=2"
|
||||
imageAlt="About our agency team and culture"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -110,7 +110,7 @@ export default function AboutPage() {
|
||||
title: "Alex Turner",
|
||||
subtitle: "Chief Strategy Officer",
|
||||
detail: "alex@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg?_wi=2",
|
||||
imageAlt: "Alex Turner",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function AboutPage() {
|
||||
title: "Jordan Blake",
|
||||
subtitle: "Creative Director",
|
||||
detail: "jordan@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg?_wi=2",
|
||||
imageAlt: "Jordan Blake",
|
||||
},
|
||||
],
|
||||
@@ -132,7 +132,7 @@ export default function AboutPage() {
|
||||
title: "Casey Parker",
|
||||
subtitle: "Content Strategist",
|
||||
detail: "casey@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=2",
|
||||
imageAlt: "Casey Parker",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function AboutPage() {
|
||||
title: "Morgan Fields",
|
||||
subtitle: "Copywriter",
|
||||
detail: "morgan@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg?_wi=2",
|
||||
imageAlt: "Morgan Fields",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -1,24 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Apex Agency - Premium Social Media Marketing",
|
||||
description: "Transform your brand with premium social media strategy, content creation, and community management. Partner with industry-leading agency for measurable growth.",
|
||||
keywords: "social media agency, digital marketing, content creation, social media strategy, brand growth",
|
||||
openGraph: {
|
||||
title: "Apex Agency - Premium Social Media Marketing",
|
||||
description: "Elevate your social presence with data-driven strategy and creative excellence.",
|
||||
url: "https://apexagency.com",
|
||||
siteName: "Apex Agency",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/worker-talking-phone-office_23-2147601356.jpg",
|
||||
alt: "Apex Agency - Social Media Solutions",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Apex Agency - Premium Social Media Marketing",
|
||||
description: "Transform your brand into a social media powerhouse with our expert team.",
|
||||
images: ["http://img.b2bpic.net/free-photo/worker-talking-phone-office_23-2147601356.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -109,7 +109,7 @@ export default function HomePage() {
|
||||
{ value: "500+", title: "Campaigns Launched" },
|
||||
{ value: "2.3B", title: "Total Impressions Generated" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-young-business-people-working-office_158595-5207.jpg?_wi=1"
|
||||
imageAlt="About our agency team"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -126,21 +126,21 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
title: "Strategy & Planning",
|
||||
tags: ["Market Research", "Audience Analysis"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-cms-landing-page-template_23-2148806162.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-cms-landing-page-template_23-2148806162.jpg?_wi=1",
|
||||
imageAlt: "Social media strategy",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Content Creation",
|
||||
tags: ["Video Production", "Photography"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-freelancer-talking-people-webinar-lesson-videocall-using-online-class-videoconference-chat-with-colleagues-young-adult-attending-teleconference-call-social-distance_482257-48573.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-freelancer-talking-people-webinar-lesson-videocall-using-online-class-videoconference-chat-with-colleagues-young-adult-attending-teleconference-call-social-distance_482257-48573.jpg?_wi=1",
|
||||
imageAlt: "Content creation services",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Community Management",
|
||||
tags: ["Engagement", "Response Management"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manager-watches-tablet-with-greenscreen_482257-76577.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manager-watches-tablet-with-greenscreen_482257-76577.jpg?_wi=1",
|
||||
imageAlt: "Community management",
|
||||
},
|
||||
]}
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
name: "Luxury Fashion Brand Launch",
|
||||
price: "3.2M Impressions",
|
||||
variant: "Instagram & TikTok Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/instagram-post-collection-template-with-photo_52683-21784.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/instagram-post-collection-template-with-photo_52683-21784.jpg?_wi=1",
|
||||
imageAlt: "Fashion brand campaign",
|
||||
},
|
||||
{
|
||||
@@ -170,7 +170,7 @@ export default function HomePage() {
|
||||
name: "Tech Startup Viral Campaign",
|
||||
price: "5.1M Impressions",
|
||||
variant: "LinkedIn & YouTube Growth",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-agency-facebook-template_23-2150726404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-agency-facebook-template_23-2150726404.jpg?_wi=1",
|
||||
imageAlt: "Tech startup marketing",
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@ export default function HomePage() {
|
||||
name: "Restaurant Brand Growth",
|
||||
price: "2.8M Impressions",
|
||||
variant: "Instagram & Facebook Engagement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-fun-their-break-time_23-2149272085.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-fun-their-break-time_23-2149272085.jpg?_wi=1",
|
||||
imageAlt: "Restaurant social media",
|
||||
},
|
||||
]}
|
||||
@@ -202,7 +202,7 @@ export default function HomePage() {
|
||||
role: "CMO",
|
||||
company: "Luxe Collective",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-stylish-bearded-man-with-hairstyle-elegant-retro-gray-suit-bow-tie-posing-studio-isolated-gray-background_613910-20001.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-stylish-bearded-man-with-hairstyle-elegant-retro-gray-suit-bow-tie-posing-studio-isolated-gray-background_613910-20001.jpg?_wi=1",
|
||||
imageAlt: "Sarah Mitchell",
|
||||
},
|
||||
{
|
||||
@@ -211,7 +211,7 @@ export default function HomePage() {
|
||||
role: "Founder",
|
||||
company: "TechFlow Inc",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businesswoman-meeting-with-team_1262-2323.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businesswoman-meeting-with-team_1262-2323.jpg?_wi=1",
|
||||
imageAlt: "James Chen",
|
||||
},
|
||||
{
|
||||
@@ -220,7 +220,7 @@ export default function HomePage() {
|
||||
role: "Marketing Director",
|
||||
company: "Culinary Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/company-ceo-analyzing-data-laptop-planning-business-development_482257-79020.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/company-ceo-analyzing-data-laptop-planning-business-development_482257-79020.jpg?_wi=1",
|
||||
imageAlt: "Emma Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
role: "CEO",
|
||||
company: "Global Ventures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-brown-classic-jacket-with-crossing-arms-isolated-dark-background_613910-6555.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-brown-classic-jacket-with-crossing-arms-isolated-dark-background_613910-6555.jpg?_wi=1",
|
||||
imageAlt: "Michael Thompson",
|
||||
},
|
||||
{
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
role: "Brand Manager",
|
||||
company: "StyleHub",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg?_wi=1",
|
||||
imageAlt: "Lisa Wang",
|
||||
},
|
||||
{
|
||||
@@ -247,7 +247,7 @@ export default function HomePage() {
|
||||
role: "VP Marketing",
|
||||
company: "Innovation Labs",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-executive-work_1098-705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-executive-work_1098-705.jpg?_wi=1",
|
||||
imageAlt: "David Norton",
|
||||
},
|
||||
]}
|
||||
@@ -296,7 +296,7 @@ export default function HomePage() {
|
||||
title: "Alex Turner",
|
||||
subtitle: "Chief Strategy Officer",
|
||||
detail: "alex@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-executive-standing-with-arms-crossed_107420-63906.jpg?_wi=1",
|
||||
imageAlt: "Alex Turner",
|
||||
},
|
||||
{
|
||||
@@ -304,7 +304,7 @@ export default function HomePage() {
|
||||
title: "Jordan Blake",
|
||||
subtitle: "Creative Director",
|
||||
detail: "jordan@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg?_wi=1",
|
||||
imageAlt: "Jordan Blake",
|
||||
},
|
||||
],
|
||||
@@ -318,7 +318,7 @@ export default function HomePage() {
|
||||
title: "Casey Parker",
|
||||
subtitle: "Content Strategist",
|
||||
detail: "casey@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=1",
|
||||
imageAlt: "Casey Parker",
|
||||
},
|
||||
{
|
||||
@@ -326,7 +326,7 @@ export default function HomePage() {
|
||||
title: "Morgan Fields",
|
||||
subtitle: "Copywriter",
|
||||
detail: "morgan@apexagency.com",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-embracing-book_23-2147797373.jpg?_wi=1",
|
||||
imageAlt: "Morgan Fields",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -82,7 +82,7 @@ export default function PortfolioPage() {
|
||||
name: "Luxury Fashion Brand Launch",
|
||||
price: "3.2M Impressions",
|
||||
variant: "Instagram & TikTok Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/instagram-post-collection-template-with-photo_52683-21784.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/instagram-post-collection-template-with-photo_52683-21784.jpg?_wi=2",
|
||||
imageAlt: "Fashion brand campaign",
|
||||
},
|
||||
{
|
||||
@@ -90,7 +90,7 @@ export default function PortfolioPage() {
|
||||
name: "Tech Startup Viral Campaign",
|
||||
price: "5.1M Impressions",
|
||||
variant: "LinkedIn & YouTube Growth",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-agency-facebook-template_23-2150726404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-agency-facebook-template_23-2150726404.jpg?_wi=2",
|
||||
imageAlt: "Tech startup marketing",
|
||||
},
|
||||
{
|
||||
@@ -98,7 +98,7 @@ export default function PortfolioPage() {
|
||||
name: "Restaurant Brand Growth",
|
||||
price: "2.8M Impressions",
|
||||
variant: "Instagram & Facebook Engagement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-fun-their-break-time_23-2149272085.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-fun-their-break-time_23-2149272085.jpg?_wi=2",
|
||||
imageAlt: "Restaurant social media",
|
||||
},
|
||||
]}
|
||||
@@ -122,7 +122,7 @@ export default function PortfolioPage() {
|
||||
role: "CMO",
|
||||
company: "Luxe Collective",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-stylish-bearded-man-with-hairstyle-elegant-retro-gray-suit-bow-tie-posing-studio-isolated-gray-background_613910-20001.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-stylish-bearded-man-with-hairstyle-elegant-retro-gray-suit-bow-tie-posing-studio-isolated-gray-background_613910-20001.jpg?_wi=2",
|
||||
imageAlt: "Sarah Mitchell",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ export default function PortfolioPage() {
|
||||
role: "Founder",
|
||||
company: "TechFlow Inc",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businesswoman-meeting-with-team_1262-2323.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businesswoman-meeting-with-team_1262-2323.jpg?_wi=2",
|
||||
imageAlt: "James Chen",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function PortfolioPage() {
|
||||
role: "Marketing Director",
|
||||
company: "Culinary Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/company-ceo-analyzing-data-laptop-planning-business-development_482257-79020.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/company-ceo-analyzing-data-laptop-planning-business-development_482257-79020.jpg?_wi=2",
|
||||
imageAlt: "Emma Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function PortfolioPage() {
|
||||
role: "CEO",
|
||||
company: "Global Ventures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-brown-classic-jacket-with-crossing-arms-isolated-dark-background_613910-6555.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-brown-classic-jacket-with-crossing-arms-isolated-dark-background_613910-6555.jpg?_wi=2",
|
||||
imageAlt: "Michael Thompson",
|
||||
},
|
||||
{
|
||||
@@ -158,7 +158,7 @@ export default function PortfolioPage() {
|
||||
role: "Brand Manager",
|
||||
company: "StyleHub",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg?_wi=2",
|
||||
imageAlt: "Lisa Wang",
|
||||
},
|
||||
{
|
||||
@@ -167,7 +167,7 @@ export default function PortfolioPage() {
|
||||
role: "VP Marketing",
|
||||
company: "Innovation Labs",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-executive-work_1098-705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-executive-work_1098-705.jpg?_wi=2",
|
||||
imageAlt: "David Norton",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -80,21 +80,21 @@ export default function ServicesPage() {
|
||||
id: "1",
|
||||
title: "Strategy & Planning",
|
||||
tags: ["Market Research", "Audience Analysis"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-cms-landing-page-template_23-2148806162.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-cms-landing-page-template_23-2148806162.jpg?_wi=2",
|
||||
imageAlt: "Social media strategy",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Content Creation",
|
||||
tags: ["Video Production", "Photography"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-freelancer-talking-people-webinar-lesson-videocall-using-online-class-videoconference-chat-with-colleagues-young-adult-attending-teleconference-call-social-distance_482257-48573.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-freelancer-talking-people-webinar-lesson-videocall-using-online-class-videoconference-chat-with-colleagues-young-adult-attending-teleconference-call-social-distance_482257-48573.jpg?_wi=2",
|
||||
imageAlt: "Content creation services",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Community Management",
|
||||
tags: ["Engagement", "Response Management"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manager-watches-tablet-with-greenscreen_482257-76577.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manager-watches-tablet-with-greenscreen_482257-76577.jpg?_wi=2",
|
||||
imageAlt: "Community management",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user