23 Commits

Author SHA1 Message Date
ec9dd60af0 Update src/app/page.tsx 2026-03-03 09:33:35 +00:00
d4e4b0e915 Update src/app/services/page.tsx 2026-03-03 09:30:13 +00:00
745e4753e4 Update src/app/portfolio/page.tsx 2026-03-03 09:30:13 +00:00
2ca00fa28d Update src/app/page.tsx 2026-03-03 09:30:12 +00:00
9996160f9f Update src/app/contact/page.tsx 2026-03-03 09:30:12 +00:00
3bcfe1b310 Update src/app/about/page.tsx 2026-03-03 09:30:12 +00:00
10dbb04e49 Update src/app/services/page.tsx 2026-03-03 09:24:40 +00:00
ecc256b431 Update src/app/portfolio/page.tsx 2026-03-03 09:24:39 +00:00
3c00cb8030 Update src/app/page.tsx 2026-03-03 09:24:37 +00:00
740730d018 Update src/app/layout.tsx 2026-03-03 09:24:36 +00:00
0878a86ac8 Update src/app/about/page.tsx 2026-03-03 09:24:34 +00:00
ede57b6b3d Update src/app/about/page.tsx 2026-03-03 09:13:49 +00:00
00a44a97f3 Update src/app/about/page.tsx 2026-03-03 09:10:37 +00:00
e117e7a372 Update src/app/services/page.tsx 2026-03-03 09:03:03 +00:00
a71731a418 Update src/app/portfolio/page.tsx 2026-03-03 09:03:02 +00:00
1df1be60b5 Update src/app/page.tsx 2026-03-03 09:03:01 +00:00
3f2f0a9ad6 Update src/app/layout.tsx 2026-03-03 09:03:00 +00:00
fc665c7bec Update src/app/contact/page.tsx 2026-03-03 09:02:59 +00:00
966a4396d6 Update src/app/about/page.tsx 2026-03-03 09:02:58 +00:00
fb6f45f39b Merge version_1 into main
Merge version_1 into main
2026-03-03 08:50:40 +00:00
a606121cd2 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:49:17 +00:00
40a86eb390 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:45:58 +00:00
de4e6bd0f7 Merge version_1 into main
Merge version_1 into main
2026-03-03 08:44:35 +00:00
2 changed files with 71 additions and 6 deletions

View File

@@ -19,7 +19,8 @@ export const metadata: Metadata = {
], ],
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Pulse Digital | Web Design & Development", description: "Professional web design and development services for modern businesses.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png"], card: "summary_large_image", title: "Pulse Digital | Web Design & Development", description: "Professional web design and development services for modern businesses.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/a-modern-sleek-web-design-dashboard-inte-1772527372132-0a49fa86.png"],
}, },
}; };
@@ -1405,4 +1406,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -8,10 +8,11 @@ import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ProductCardOne from "@/components/sections/product/ProductCardOne";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import ContactText from "@/components/sections/contact/ContactText"; import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link"; import Link from "next/link";
import { Zap, Heart, Rocket, Lightbulb, Star, TrendingUp, Workflow, MessageCircle } from "lucide-react"; import { Zap, Heart, Rocket, Lightbulb, Star, TrendingUp, Workflow, MessageCircle, Users } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -22,6 +23,17 @@ export default function HomePage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
const teamMembers = [
{
id: "1", name: "You", role: "Founder", imageSrc: "https://via.placeholder.com/400x400?text=Your+Photo", imageAlt: "Your professional photo"},
{
id: "2", name: "Team Member 1", role: "Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-fem-1772527369324-28809a03.png?_wi=1", imageAlt: "Designer"},
{
id: "3", name: "Team Member 2", role: "Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-mal-1772527369460-6104c452.png?_wi=1", imageAlt: "Developer"},
{
id: "4", name: "Team Member 3", role: "Project Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-young-female--1772527369938-37ff44ff.png?_wi=1", imageAlt: "Project Manager"},
];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="hover-magnetic"
@@ -104,18 +116,70 @@ export default function HomePage() {
/> />
</div> </div>
<div id="team" data-section="team">
<TeamCardOne
members={teamMembers}
title="Meet Our Team"
description="Meet the talented professionals behind Pulse Digital who bring your vision to life"
tag="Our Team"
tagIcon={Users}
tagAnimation="slide-up"
animationType="slide-up"
gridVariant="four-items-2x2-equal-grid"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="capabilities" data-section="capabilities">
<FeatureCardNine
title="Our Capabilities"
description="Comprehensive digital solutions tailored to transform your business"
tag="What We Deliver"
tagIcon={Lightbulb}
tagAnimation="slide-up"
features={[
{
id: 1,
title: "Web Design & UX", description: "Stunning, user-centric website designs that captivate your audience and drive engagement. We blend aesthetics with functionality to create digital experiences that stand out.", phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=1", imageAlt: "Web design process"},
phoneTwo: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=1", imageAlt: "Branding elements"},
},
{
id: 2,
title: "Development & Performance", description: "Robust, scalable websites built with modern technologies. From responsive design to seamless backend integration, we ensure your website performs flawlessly across all devices.", phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=1", imageAlt: "Development code"},
phoneTwo: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=2", imageAlt: "Design implementation"},
},
{
id: 3,
title: "Strategy & Innovation", description: "Strategic solutions that establish your unique market position and drive results. We combine creative thinking with data-driven insights to deliver measurable impact.", phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=2", imageAlt: "Brand guidelines"},
phoneTwo: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=2", imageAlt: "Strategy implementation"},
},
]}
showStepNumbers={true}
textboxLayout="default"
useInvertedBackground={true}
animationType="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen <TestimonialCardThirteen
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "Pulse Digital transformed our online presence. The website they built not only looks stunning but has increased our sales by 40%. Highly recommend!", rating: 5, id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "Pulse Digital transformed our online presence. The website they built not only looks stunning but has increased our sales by 40%. Highly recommend!", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-fem-1772527369324-28809a03.png", imageAlt: "Sarah Mitchell, CEO"}, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-fem-1772527369324-28809a03.png?_wi=2", imageAlt: "Sarah Mitchell, CEO"},
{ {
id: "2", name: "James Chen", handle: "@jameschen", testimonial: "Working with Pulse Digital was seamless. They understood our vision, delivered on time, and provided excellent support throughout the project.", rating: 5, id: "2", name: "James Chen", handle: "@jameschen", testimonial: "Working with Pulse Digital was seamless. They understood our vision, delivered on time, and provided excellent support throughout the project.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-mal-1772527369460-6104c452.png", imageAlt: "James Chen, Founder"}, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-mal-1772527369460-6104c452.png?_wi=2", imageAlt: "James Chen, Founder"},
{ {
id: "3", name: "Emily Rodriguez", handle: "@emilyrodriguez", testimonial: "The team at Pulse Digital is incredibly talented and professional. They took our outdated website and created something truly exceptional.", rating: 5, id: "3", name: "Emily Rodriguez", handle: "@emilyrodriguez", testimonial: "The team at Pulse Digital is incredibly talented and professional. They took our outdated website and created something truly exceptional.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-young-female--1772527369938-37ff44ff.png", imageAlt: "Emily Rodriguez, Marketing Director"}, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-young-female--1772527369938-37ff44ff.png?_wi=2", imageAlt: "Emily Rodriguez, Marketing Director"},
{ {
id: "4", name: "David Park", handle: "@davidpark", testimonial: "From initial consultation to launch, Pulse Digital was exceptional. Our new website has become a powerful business tool.", rating: 5, id: "4", name: "David Park", handle: "@davidpark", testimonial: "From initial consultation to launch, Pulse Digital was exceptional. Our new website has become a powerful business tool.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-mal-1772527370017-a9558657.png", imageAlt: "David Park, Business Owner"}, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/professional-headshot-of-a-confident-mal-1772527370017-a9558657.png", imageAlt: "David Park, Business Owner"},