3 Commits

Author SHA1 Message Date
db064b9511 Update src/app/page.tsx 2026-01-19 17:42:18 +00:00
d528c09a99 Update src/app/page.tsx 2026-01-19 17:40:59 +00:00
5d598edef7 Update src/app/layout.tsx 2026-01-19 17:40:58 +00:00
2 changed files with 47 additions and 58 deletions

View File

@@ -6,21 +6,16 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const interTight = Inter_Tight({ const interTight = Inter_Tight({
variable: "--font-inter-tight", variable: "--font-inter-tight", subsets: ["latin"],
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
const firaCode = Fira_Code({ const firaCode = Fira_Code({
variable: "--font-fira-code", variable: "--font-fira-code", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "NEXUS - Premium Social Media Agency | Strategic Growth Solutions", title: "NEXUS - Premium Social Media Agency | Strategic Growth Solutions", description: "Transform your brand with data-driven social media strategies. Award-winning agency specializing in content creation, community management, and measurable results.", keywords: "social media agency, digital marketing, content creation, social media strategy, brand growth, influencer marketing", metadataBase: new URL("https://nexus-agency.com"),
description: "Transform your brand with data-driven social media strategies. Award-winning agency specializing in content creation, community management, and measurable results.",
keywords: "social media agency, digital marketing, content creation, social media strategy, brand growth, influencer marketing",
metadataBase: new URL("https://nexus-agency.com"),
alternates: { alternates: {
canonical: "https://nexus-agency.com" canonical: "https://nexus-agency.com"
}, },
@@ -29,20 +24,12 @@ export const metadata: Metadata = {
follow: true follow: true
}, },
openGraph: { openGraph: {
title: "NEXUS - Premium Social Media Agency", title: "NEXUS - Premium Social Media Agency", description: "Transform your brand's digital presence with data-driven strategies and captivating content.", type: "website", siteName: "NEXUS", images: [{
description: "Transform your brand's digital presence with data-driven strategies and captivating content.", url: "https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg", alt: "NEXUS Social Media Agency"
type: "website",
siteName: "NEXUS",
images: [{
url: "https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg",
alt: "NEXUS Social Media Agency"
}] }]
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "NEXUS - Premium Social Media Agency", description: "Award-winning social media strategies that drive growth and engagement.", images: ["https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg"]
title: "NEXUS - Premium Social Media Agency",
description: "Award-winning social media strategies that drive growth and engagement.",
images: ["https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg"]
} }
}; };

View File

@@ -24,11 +24,11 @@ export default function HomePage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="NEXUS" brandName="NEXUS"
navItems={[ navItems={[
{ name: "Services", id: "/services" }, { name: "Services", id: "services" },
{ name: "Portfolio", id: "/portfolio" }, { name: "Portfolio", id: "portfolio" },
{ name: "About", id: "/about" }, { name: "About", id: "about" },
{ name: "Pricing", id: "/pricing" }, { name: "Pricing", id: "pricing" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Get Started", href: "/contact" }} button={{ text: "Get Started", href: "/contact" }}
/> />
@@ -37,7 +37,7 @@ export default function HomePage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="NEXUS" logoText="NEXUS"
description="Transform your brand's digital presence with data-driven strategies, captivating content, and measurable results that accelerate growth." description="Grow your brand's reach by 300% with our proven data-driven strategies, captivating content creation, and targeted campaigns that deliver measurable results."
imageSrc="https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg" imageSrc="https://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16157.jpg"
imageAlt="Creative social media team collaborating on strategy" imageAlt="Creative social media team collaborating on strategy"
frameStyle="card" frameStyle="card"
@@ -61,26 +61,27 @@ export default function HomePage() {
/> />
</div> </div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="NEXUS" logoText="NEXUS"
columns={[ columns={[
{ {
items: [ items: [
{ label: "Services", href: "/services" }, { label: "Services", href: "services" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "portfolio" },
{ label: "Pricing", href: "/pricing" } { label: "Pricing", href: "pricing" }
] ]
}, },
{ {
items: [ items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "about" },
{ label: "Team", href: "/about" }, { label: "Team", href: "about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" } { label: "Careers", href: "https://nexus-agency.com/careers" }
] ]
}, },
{ {
items: [ items: [
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "contact" },
{ label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" }, { label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" },
{ label: "+1 (555) 123-4567", href: "tel:+15551234567" } { label: "+1 (555) 123-4567", href: "tel:+15551234567" }
] ]
@@ -94,6 +95,7 @@ export default function HomePage() {
} }
]} ]}
/> />
</div>
</ThemeProvider> </ThemeProvider>
); );
} }