14 Commits

Author SHA1 Message Date
6949ae12fb Merge version_3 into main
Merge version_3 into main
2026-03-01 08:23:32 +00:00
7f01aa8d2d Update src/app/page.tsx 2026-03-01 08:23:28 +00:00
a52b2b90e1 Update src/app/layout.tsx 2026-03-01 08:23:27 +00:00
bb25fc7791 Merge version_2 into main
Merge version_2 into main
2026-03-01 08:21:32 +00:00
88b36f4f31 Update theme fonts 2026-03-01 08:21:28 +00:00
8c08fbd3db Update theme fonts 2026-03-01 08:21:27 +00:00
f6ddabc434 Merge version_2 into main
Merge version_2 into main
2026-03-01 08:21:13 +00:00
1328b40bfb Update theme fonts 2026-03-01 08:21:09 +00:00
8dbda844cb Update theme fonts 2026-03-01 08:21:09 +00:00
c6341e23a3 Merge version_2 into main
Merge version_2 into main
2026-03-01 06:56:49 +00:00
0704f001ac Update src/app/page.tsx 2026-03-01 06:56:45 +00:00
bf9ab1f5c1 Merge version_2 into main
Merge version_2 into main
2026-03-01 06:56:11 +00:00
2647d4ad84 Update src/app/page.tsx 2026-03-01 06:56:07 +00:00
5051b1e376 Merge version_1 into main
Merge version_1 into main
2026-03-01 03:25:32 +00:00
3 changed files with 43 additions and 42 deletions

View File

@@ -1,45 +1,25 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const geistSans = localFont({
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
title: "Marketing Agency | AgencyPro - Brand Strategy & Digital Growth", description: "Transform your brand with AgencyPro. Strategic marketing, creative design, and digital growth solutions for ambitious companies.", keywords: ["marketing agency", "brand strategy", "digital marketing", "creative design", "branding", "growth marketing", "social media marketing"],
metadataBase: new URL("https://agencypro.com"),
alternates: {
canonical: "https://agencypro.com"
},
openGraph: {
title: "AgencyPro - Marketing Strategy & Creative Excellence", description: "Transform your brand into a market leader with our data-driven marketing strategies and creative solutions.", siteName: "AgencyPro", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/people-stand-high-five-office_482257-119247.jpg", alt: "AgencyPro marketing services"
}]
},
twitter: {
card: "summary_large_image", title: "AgencyPro - Brand Transformation & Growth", description: "Strategic marketing that delivers real results. Explore our services.", images: ["http://img.b2bpic.net/free-photo/people-stand-high-five-office_482257-119247.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} antialiased`}
>
<Tag />
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
<script
@@ -1409,7 +1389,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Products", id: "products" },
{ name: "Contact", id: "contact-cta" }
]}
button={{
@@ -60,7 +61,8 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-photo/people-stand-high-five-office_482257-119247.jpg", imageAlt: "Marketing strategy session" },
{ imageSrc: "http://img.b2bpic.net/free-photo/designer-desk-architectural-tools-notebook-working-place-concept_53876-123770.jpg", imageAlt: "Creative design workspace" },
{ imageSrc: "http://img.b2bpic.net/free-photo/empty-startup-office-displays-statistics_482257-119484.jpg", imageAlt: "Digital marketing analytics" },
{ imageSrc: "http://img.b2bpic.net/free-photo/business-associates-reviewing-key-performance-indicators-within-enterprise_482257-122792.jpg", imageAlt: "Team collaboration meeting" }
{ imageSrc: "http://img.b2bpic.net/free-photo/business-associates-reviewing-key-performance-indicators-within-enterprise_482257-122792.jpg", imageAlt: "Team collaboration meeting" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=1", imageAlt: "Analytics dashboard overview" }
]}
mediaAnimation="slide-up"
ariaLabel="Marketing agency hero section"
@@ -184,6 +186,26 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Our Products"
description="Discover our carefully curated selection of digital products designed to enhance your business."
tag="Products"
tagIcon={Briefcase}
tagAnimation="slide-up"
products={[
{
id: "book-1", name: "Hello There", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg", imageAlt: "Hello There book cover"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Products section"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
title="Proven Results That Matter"
@@ -193,7 +215,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1", value: "3.5x", title: "Average ROI Growth", description: "Across all client campaigns in 2024", imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg", imageAlt: "Analytics dashboard showing growth"
id: "1", value: "3.5x", title: "Average ROI Growth", description: "Across all client campaigns in 2024", imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=2", imageAlt: "Analytics dashboard showing growth"
},
{
id: "2", value: "87%", title: "Conversion Rate Improvement", description: "Through optimized marketing funnels", imageSrc: "http://img.b2bpic.net/free-photo/analyzing-business-chart_1098-19461.jpg", imageAlt: "Success metrics visualization"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-archivo), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-archivo), sans-serif;
}