7 Commits

Author SHA1 Message Date
dd1fc7c53c Update src/app/layout.tsx 2026-05-22 23:24:58 +00:00
eaa1914ba4 Update src/app/favicon.ico 2026-05-22 23:24:25 +00:00
e8ac504ef8 Update src/app/layout.tsx 2026-05-21 20:13:40 +00:00
d454667b8c Update src/app/favicon.ico 2026-05-21 20:13:39 +00:00
c562d62bc0 Update src/app/page.tsx 2026-05-21 20:10:36 +00:00
f866db8da5 Merge version_10 into main
Merge version_10 into main
2026-05-21 20:05:08 +00:00
1a838ab822 Merge version_10 into main
Merge version_10 into main
2026-05-21 20:04:40 +00:00
3 changed files with 9 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -6,12 +6,13 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
import Tag from "@/tag/Tag";
export const metadata: Metadata = {
title: 'Marcos Digital Studio | Modern & Fast Website Design',
description: 'Freelance web designer Marcos builds high-quality, conversion-focused websites for small businesses, startups, and personal brands. Fast delivery, stress-free process.',
title: "Marcos Digital Studio | Modern & Fast Website Design",
description: "Freelance web designer Marcos builds high-quality, conversion-focused websites for small businesses, startups, and personal brands. Fast delivery, stress-free process.",
keywords: ["website designer Sacramento, small business website design, affordable website redesign, modern web design services, SEO optimization, freelance web designer California"],
};
@@ -36,7 +37,8 @@ export default function RootLayout({
__html: `${getVisualEditScript()}`
}}
/>
</body>
<Tag />
</body>
</ServiceWrapper>
</html>
);

View File

@@ -7,7 +7,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TextAbout from '@/components/sections/about/TextAbout';
@@ -29,14 +29,13 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
<NavbarStyleApple
navItems={[
{ name: "Services", id: "services" },
{ name: "Process", id: "process" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Pricing", id: "pricing" },
]}
button={{ text: "Let's Chat", href: "#contact" }}
brandName="Marcos Digital Studio"
/>
</div>
@@ -119,7 +118,7 @@ export default function LandingPage() {
useInvertedBackground={true}
plans={[
{ id: "starter", tag: "Standard", price: "$500", period: "one-time", description: "Basic site for small brands.", button: { text: "Select Plan" }, featuresTitle: "Core Features", features: ["One-page site", "Mobile responsive", "Fast delivery"] },
{ id: "business", tag: "Advanced", price: "$800", period: "one-time", description: "Full site for growth.", button: { text: "Select Plan" }, featuresTitle: "Core Features", features: ["Multi-page site", "SEO setup", "Conversion optimized"] },
{ id: "business", tag: "Advanced (Premium)", price: "$800", period: "one-time", description: "Full site for growth.", button: { text: "Select Plan" }, featuresTitle: "Core Features", features: ["Multi-page site", "SEO setup", "Conversion optimized"] },
]}
/>
</div>
@@ -148,4 +147,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}