Merge version_3 into main #2

Merged
development merged 8 commits from version_3 into main 2026-01-22 20:47:42 +00:00
8 changed files with 41 additions and 39 deletions

View File

@@ -24,7 +24,7 @@ export default function AboutPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
@@ -94,8 +94,8 @@ export default function AboutPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [

View File

@@ -97,7 +97,7 @@ export default function BlogPage() {
<ReactLenis root> <ReactLenis root>
<div className="min-h-screen bg-background"> <div className="min-h-screen bg-background">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Home", id: "/home" }, { name: "Home", id: "/home" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
@@ -127,11 +127,12 @@ export default function BlogPage() {
text: "View All Articles", onClick: () => console.log("View all clicked") text: "View All Articles", onClick: () => console.log("View all clicked")
} }
]} ]}
/> )} />
)}
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [

View File

@@ -23,7 +23,7 @@ export default function ContactPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
@@ -72,8 +72,8 @@ export default function ContactPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [

View File

@@ -6,17 +6,17 @@
/* --background: #ffffff;; /* --background: #ffffff;;
--card: #f9f9f9;; --card: #f9f9f9;;
--foreground: #0a4d2c;; --foreground: #000f06;;
--primary-cta: #0a7039;; --primary-cta: #0a7039;;
--secondary-cta: #ffffff;; --secondary-cta: #f9f9f9;;
--accent: #80d4a8;; --accent: #80d4a8;;
--background-accent: #c5e8d5;; */ --background-accent: #c5e8d5;; */
--background: #ffffff;; --background: #ffffff;;
--card: #f9f9f9;; --card: #f9f9f9;;
--foreground: #0a4d2c;; --foreground: #000f06;;
--primary-cta: #0a7039;; --primary-cta: #0a7039;;
--secondary-cta: #ffffff;; --secondary-cta: #f9f9f9;;
--accent: #80d4a8;; --accent: #80d4a8;;
--background-accent: #c5e8d5;; --background-accent: #c5e8d5;;
@@ -578,7 +578,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-nunito), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-nunito), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -1,15 +1,16 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Nunito } from "next/font/google"; import { Inter_Tight } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const nunito = Nunito({ const interTight = Inter_Tight({
variable: "--font-nunito", subsets: ["latin"], variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Dialed Web | Premium Web Design & Digital Solutions", description: "Award-winning web agency creating premium digital experiences. Web design, development, branding, and marketing for global brands.", keywords: ["web design", "web development", "digital agency", "branding", "web solutions", "UI/UX design"], title: "dialedweb | Premium Web Design & Digital Solutions", description: "Award-winning web agency creating premium digital experiences. Web design, development, branding, and marketing for global brands.", keywords: ["web design", "web development", "digital agency", "branding", "web solutions", "UI/UX design"],
metadataBase: new URL("https://dialedweb.studio"), metadataBase: new URL("https://dialedweb.studio"),
alternates: { alternates: {
canonical: "https://dialedweb.studio" canonical: "https://dialedweb.studio"
@@ -19,14 +20,14 @@ export const metadata: Metadata = {
follow: true follow: true
}, },
openGraph: { openGraph: {
title: "Dialed Web | Premium Digital Agency", description: "Transform your vision into digital reality with award-winning design and development.", type: "website", siteName: "Dialed Web", images: [ title: "dialedweb | Premium Digital Agency", description: "Transform your vision into digital reality with award-winning design and development.", type: "website", siteName: "dialedweb", images: [
{ {
url: "https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg", alt: "Dialed Web - Premium Web Design" url: "https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg", alt: "dialedweb - Premium Web Design"
} }
] ]
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Dialed Web - Premium Digital Solutions", description: "Award-winning web design and development for ambitious brands.", images: ["https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg"] card: "summary_large_image", title: "dialedweb - Premium Digital Solutions", description: "Award-winning web design and development for ambitious brands.", images: ["https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg"]
} }
}; };
@@ -39,7 +40,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${nunito.variable} antialiased`} className={`${interTight.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -28,7 +28,7 @@ export default function HomePage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "Work", id: "/work" }, { name: "Work", id: "/work" },
@@ -40,7 +40,7 @@ export default function HomePage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroLogoBillboard
logoText="Dialed Web" logoText="dialedweb"
description="We craft premium digital experiences that elevate brands and drive growth. Strategic design, flawless execution, boundless creativity." description="We craft premium digital experiences that elevate brands and drive growth. Strategic design, flawless execution, boundless creativity."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
imageSrc="https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg" imageSrc="https://img.b2bpic.net/free-photo/empty-home-setup-desk-filled-with-documents-financial-reports_482257-100068.jpg"
@@ -125,13 +125,13 @@ export default function HomePage() {
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
testimonials={[ testimonials={[
{ {
id: "1", title: "Exceptional creativity and execution", quote: "Dialed Web transformed our entire digital presence. Their team's attention to detail and strategic thinking exceeded every expectation. A true partner in success.", name: "Sarah Chen", role: "CEO, TechVenture", imageSrc: "https://img.b2bpic.net/free-photo/close-up-smiley-man-library_23-2149204750.jpg", imageAlt: "Sarah Chen CEO portrait" id: "1", title: "Exceptional creativity and execution", quote: "dialedweb transformed our entire digital presence. Their team's attention to detail and strategic thinking exceeded every expectation. A true partner in success.", name: "Sarah Chen", role: "CEO, TechVenture", imageSrc: "https://img.b2bpic.net/free-photo/close-up-smiley-man-library_23-2149204750.jpg", imageAlt: "Sarah Chen CEO portrait"
}, },
{ {
id: "2", title: "Delivered beyond our goals", quote: "From concept to launch, every step was handled with professionalism and creativity. The results speak for themselves - our engagement tripled in the first quarter.", name: "Marcus Rodriguez", role: "Founder, Growth Labs", imageSrc: "https://img.b2bpic.net/free-photo/glasses-smiling-arm-horizontal-front_1262-2739.jpg", imageAlt: "Marcus Rodriguez founder portrait" id: "2", title: "Delivered beyond our goals", quote: "From concept to launch, every step was handled with professionalism and creativity. The results speak for themselves - our engagement tripled in the first quarter.", name: "Marcus Rodriguez", role: "Founder, Growth Labs", imageSrc: "https://img.b2bpic.net/free-photo/glasses-smiling-arm-horizontal-front_1262-2739.jpg", imageAlt: "Marcus Rodriguez founder portrait"
}, },
{ {
id: "3", title: "Strategic partners, not just vendors", quote: "What sets Dialed Web apart is their genuine commitment to understanding our business goals. They delivered a platform that perfectly aligns with our vision.", name: "Jennifer Kim", role: "CMO, Digital Collective", imageSrc: "https://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg", imageAlt: "Jennifer Kim CMO portrait" id: "3", title: "Strategic partners, not just vendors", quote: "What sets dialedweb apart is their genuine commitment to understanding our business goals. They delivered a platform that perfectly aligns with our vision.", name: "Jennifer Kim", role: "CMO, Digital Collective", imageSrc: "https://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg", imageAlt: "Jennifer Kim CMO portrait"
} }
]} ]}
/> />
@@ -151,8 +151,8 @@ export default function HomePage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [

View File

@@ -24,7 +24,7 @@ export default function ServicesPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Work", id: "/work" }, { name: "Work", id: "/work" },
@@ -72,7 +72,7 @@ export default function ServicesPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
testimonials={[ testimonials={[
{ {
id: "1", title: "450% increase in qualified leads", quote: "The redesigned website and digital marketing strategy delivered by Dialed Web exceeded all our expectations. Our lead quality improved dramatically.", name: "David Park", role: "Chief Product Officer, InnovateCo", imageSrc: "https://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg", imageAlt: "David Park CPO portrait" id: "1", title: "450% increase in qualified leads", quote: "The redesigned website and digital marketing strategy delivered by dialedweb exceeded all our expectations. Our lead quality improved dramatically.", name: "David Park", role: "Chief Product Officer, InnovateCo", imageSrc: "https://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg", imageAlt: "David Park CPO portrait"
}, },
{ {
id: "2", title: "Brand transformation that converted", quote: "Our new brand identity and website drove a 300% increase in engagement. The strategic thinking behind every decision was evident in the results.", name: "Amelia Foster", role: "Founder, Luxe Brands", imageSrc: "https://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg", imageAlt: "Amelia Foster founder portrait" id: "2", title: "Brand transformation that converted", quote: "Our new brand identity and website drove a 300% increase in engagement. The strategic thinking behind every decision was evident in the results.", name: "Amelia Foster", role: "Founder, Luxe Brands", imageSrc: "https://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg", imageAlt: "Amelia Foster founder portrait"
@@ -95,8 +95,8 @@ export default function ServicesPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [

View File

@@ -24,7 +24,7 @@ export default function WorkPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Dialed Web" brandName="dialedweb"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
@@ -69,10 +69,10 @@ export default function WorkPage() {
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
testimonials={[ testimonials={[
{ {
id: "1", title: "Revenue increased by 340% in 6 months", quote: "The e-commerce platform Dialed Web built for us transformed our business. The user experience is incredible and our conversion rates soared.", name: "Sarah Chen", role: "CEO, TechVenture", imageSrc: "https://img.b2bpic.net/free-photo/close-up-smiley-man-library_23-2149204750.jpg", imageAlt: "Sarah Chen CEO portrait" id: "1", title: "Revenue increased by 340% in 6 months", quote: "The e-commerce platform dialedweb built for us transformed our business. The user experience is incredible and our conversion rates soared.", name: "Sarah Chen", role: "CEO, TechVenture", imageSrc: "https://img.b2bpic.net/free-photo/close-up-smiley-man-library_23-2149204750.jpg", imageAlt: "Sarah Chen CEO portrait"
}, },
{ {
id: "2", title: "Brand recognition up 500%", quote: "Our new brand identity created by Dialed Web elevated our entire market presence. The attention to detail and strategic thinking was exceptional.", name: "Amelia Foster", role: "Founder, Luxe Brands", imageSrc: "https://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg", imageAlt: "Amelia Foster founder portrait" id: "2", title: "Brand recognition up 500%", quote: "Our new brand identity created by dialedweb elevated our entire market presence. The attention to detail and strategic thinking was exceptional.", name: "Amelia Foster", role: "Founder, Luxe Brands", imageSrc: "https://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg", imageAlt: "Amelia Foster founder portrait"
}, },
{ {
id: "3", title: "User engagement tripled overnight", quote: "The mobile app they developed for us exceeded every benchmark. User retention is at an all-time high and our customers love the experience.", name: "David Park", role: "Chief Product Officer, InnovateCo", imageSrc: "https://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg", imageAlt: "David Park CPO portrait" id: "3", title: "User engagement tripled overnight", quote: "The mobile app they developed for us exceeded every benchmark. User retention is at an all-time high and our customers love the experience.", name: "David Park", role: "Chief Product Officer, InnovateCo", imageSrc: "https://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg", imageAlt: "David Park CPO portrait"
@@ -95,8 +95,8 @@ export default function WorkPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Dialed Web" logoText="dialedweb"
copyrightText="© 2025 Dialed Web. All rights reserved." copyrightText="© 2025 dialedweb. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [