Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b2d825ed18 | |||
| da0f78269a | |||
| 8518df8509 | |||
| 8685e57af3 | |||
| ef220ebb32 | |||
| 4955341e33 | |||
| 0aa35dc3c5 | |||
| cef782a452 | |||
| e6fae6cefb | |||
| 9c6b5b4d2b |
@@ -24,7 +24,7 @@ export default function AboutPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
@@ -94,8 +94,8 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function BlogPage() {
|
||||
<ReactLenis root>
|
||||
<div className="min-h-screen bg-background">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/home" },
|
||||
{ name: "Services", id: "services" },
|
||||
@@ -127,11 +127,12 @@ export default function BlogPage() {
|
||||
text: "View All Articles", onClick: () => console.log("View all clicked")
|
||||
}
|
||||
]}
|
||||
/> )}
|
||||
/>
|
||||
)}
|
||||
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
@@ -23,7 +23,7 @@ export default function ContactPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
@@ -72,8 +72,8 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
@@ -6,17 +6,17 @@
|
||||
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #0a4d2c;;
|
||||
--foreground: #000f06;;
|
||||
--primary-cta: #0a7039;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #80d4a8;;
|
||||
--background-accent: #c5e8d5;; */
|
||||
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #0a4d2c;;
|
||||
--foreground: #000f06;;
|
||||
--primary-cta: #0a7039;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #80d4a8;;
|
||||
--background-accent: #c5e8d5;;
|
||||
|
||||
@@ -578,7 +578,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-nunito), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -591,5 +591,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-nunito), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1,15 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
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"),
|
||||
alternates: {
|
||||
canonical: "https://dialedweb.studio"
|
||||
@@ -19,14 +20,14 @@ export const metadata: Metadata = {
|
||||
follow: true
|
||||
},
|
||||
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: {
|
||||
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>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} antialiased`}
|
||||
className={`${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -28,7 +28,7 @@ export default function HomePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Work", id: "/work" },
|
||||
@@ -40,7 +40,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="Dialed Web"
|
||||
logoText="dialedweb"
|
||||
description="We craft premium digital experiences that elevate brands and drive growth. Strategic design, flawless execution, boundless creativity."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
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"
|
||||
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: "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">
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
@@ -24,7 +24,7 @@ export default function ServicesPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Work", id: "/work" },
|
||||
@@ -72,7 +72,7 @@ export default function ServicesPage() {
|
||||
useInvertedBackground="invertDefault"
|
||||
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"
|
||||
@@ -95,8 +95,8 @@ export default function ServicesPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
@@ -24,7 +24,7 @@ export default function WorkPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Dialed Web"
|
||||
brandName="dialedweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
@@ -69,10 +69,10 @@ export default function WorkPage() {
|
||||
useInvertedBackground="invertDefault"
|
||||
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"
|
||||
@@ -95,8 +95,8 @@ export default function WorkPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Dialed Web"
|
||||
copyrightText="© 2025 Dialed Web. All rights reserved."
|
||||
logoText="dialedweb"
|
||||
copyrightText="© 2025 dialedweb. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
|
||||
Reference in New Issue
Block a user