12 Commits

Author SHA1 Message Date
4cdd3367fc Update src/app/page.tsx 2026-03-04 19:24:53 +00:00
2137bdf1b6 Update src/app/meet-the-team/page.tsx 2026-03-04 19:24:52 +00:00
2f9ba54b1a Merge version_2 into main
Merge version_2 into main
2026-03-04 19:20:20 +00:00
1aab5cd5ab Update src/app/page.tsx 2026-03-04 19:20:16 +00:00
b60e8e22d1 Update src/app/meet-the-team/page.tsx 2026-03-04 19:20:16 +00:00
2d0cb8ffae Merge version_2 into main
Merge version_2 into main
2026-03-04 19:19:10 +00:00
ff85a7dc21 Update src/app/page.tsx 2026-03-04 19:19:06 +00:00
471f42beca Add src/app/meet-the-team/page.tsx 2026-03-04 19:19:05 +00:00
5211a05c58 Update src/app/layout.tsx 2026-03-04 19:19:05 +00:00
eef2d4b176 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:14:56 +00:00
1ef76c0646 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:13:46 +00:00
a9569d3418 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:12:21 +00:00
3 changed files with 133 additions and 60 deletions

View File

@@ -1,56 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "PrimeSignal - Premium Website Design for Local Businesses", description: "High-converting website design for local businesses. Transform your online presence and generate more leads with our premium web design services.", keywords: "web design, local business website, website design agency, high-converting websites, digital agency, website redesign", robots: {
index: true,
follow: true,
},
openGraph: {
title: "PrimeSignal - Premium Website Design", description: "Premium websites that convert. We design beautiful, high-performing websites for local businesses ready to dominate online.", type: "website", siteName: "PrimeSignal", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png", alt: "PrimeSignal Premium Website Design"},
],
},
twitter: {
card: "summary_large_image", title: "PrimeSignal - Premium Website Design", description: "High-converting websites for local businesses. Transform your online presence today.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png"],
},
};
title: "PrimeSignal - Premium Websites for Local Businesses", description: "High-converting websites designed for local businesses to attract customers and drive growth."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -0,0 +1,88 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Linkedin, MessageSquare, Rocket, Twitter, Instagram } from 'lucide-react';
export default function MeetTheTeamPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="large"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="PrimeSignal"
navItems={[
{ name: "Services", id: "/" },
{ name: "Portfolio", id: "/" },
{ name: "Why Us", id: "/" },
{ name: "Team", id: "/meet-the-team" },
{ name: "Contact", id: "/" },
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
title="Meet Our Team"
description="Get to know the talented professionals behind PrimeSignal who are dedicated to bringing your vision to life."
tag="Our Team"
tagIcon={MessageSquare}
tagAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
members={[
{
id: "1", name: "Alex Morgan", role: "Creative Director", description: "Creative visionary with 10+ years of experience in digital design. Alex leads our design philosophy and ensures every project exceeds expectations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-business-owne-1772651490341-54fa1f0a.png?_wi=2", imageAlt: "Alex Morgan", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Twitter, url: "https://twitter.com" },
]
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Work With Us?"
tagIcon={Rocket}
title="Let's Build Something Amazing Together"
description="Our team is passionate about creating exceptional websites that drive real results. Schedule a free consultation to discuss your project and meet our team."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Get Your Free Consultation", href: "https://calendly.com" },
{ text: "Back to Home", href: "/" },
]}
buttonAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="PrimeSignal"
copyrightText="© 2025 PrimeSignal. Premium websites for local businesses."
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
]}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -33,6 +33,7 @@ export default function PrimeSignalPage() {
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Why Us", id: "why-primesignal" },
{ name: "Team", id: "/meet-the-team" },
{ name: "Contact", id: "contact" },
]}
/>
@@ -48,23 +49,31 @@ export default function PrimeSignalPage() {
background={{ variant: "plain" }}
leftCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=1", imageAlt: "Modern dashboard interface"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=1", imageAlt: "Modern dashboard interface"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=1", imageAlt: "Modern roofing company website"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=1", imageAlt: "Modern roofing company website"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-modern-web-design-mockup-on-a-laptop-s-1772651491272-5ec4e02e.png?_wi=1", imageAlt: "Web design mockup"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-modern-web-design-mockup-on-a-laptop-s-1772651491272-5ec4e02e.png?_wi=1", imageAlt: "Web design mockup"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=1", imageAlt: "Modern landscaping company website"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=1", imageAlt: "Modern landscaping company website"
},
]}
rightCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-modern-web-design-mockup-on-a-laptop-s-1772651491272-5ec4e02e.png?_wi=2", imageAlt: "Web design mockup"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-modern-web-design-mockup-on-a-laptop-s-1772651491272-5ec4e02e.png?_wi=2", imageAlt: "Web design mockup"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=2", imageAlt: "Modern landscaping company website"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=2", imageAlt: "Modern landscaping company website"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=2", imageAlt: "Modern dashboard interface"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=2", imageAlt: "Modern dashboard interface"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=2", imageAlt: "Modern roofing company website"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=2", imageAlt: "Modern roofing company website"
},
]}
carouselPosition="right"
buttons={[{ text: "Get Your Free Demo", href: "#contact" }]}
@@ -126,13 +135,16 @@ export default function PrimeSignalPage() {
products={[
{
id: "1", brand: "Roofing Company", name: "Premium Roofing Solutions - Website Redesign", price: "Increase in Leads: 245%", rating: 5,
reviewCount: "18 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=3", imageAlt: "Modern roofing company website"},
reviewCount: "18 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-beautiful-modern-roofing-company-websi-1772651492784-9cfdbb4d.png?_wi=3", imageAlt: "Modern roofing company website"
},
{
id: "2", brand: "Landscaping Business", name: "Expert Landscaping - Complete Website Build", price: "ROI: 380%", rating: 5,
reviewCount: "12 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=3", imageAlt: "Beautiful landscaping company website"},
reviewCount: "12 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-stunning-modern-landscaping-company-we-1772651492901-0a8df823.png?_wi=3", imageAlt: "Beautiful landscaping company website"
},
{
id: "3", brand: "Local Services", name: "High-Converting Local Business Site", price: "Conversion Rate: +156%", rating: 5,
reviewCount: "9 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=3", imageAlt: "Local business dashboard analytics"},
reviewCount: "9 months", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/a-sleek-modern-dashboard-interface-with--1772651490722-baf1c45b.png?_wi=3", imageAlt: "Local business dashboard analytics"
},
]}
buttons={[{ text: "Want a Site Like This?", href: "#contact" }]}
buttonAnimation="slide-up"
@@ -173,17 +185,23 @@ export default function PrimeSignalPage() {
speed={40}
testimonials={[
{
id: "1", name: "Marcus Johnson", handle: "@roofingtx", testimonial: "PrimeSignal completely transformed our business. Our new website is stunning and we've seen a 300% increase in qualified leads within the first three months. Best investment we've ever made.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-business-owne-1772651490341-54fa1f0a.png", imageAlt: "Marcus Johnson"},
id: "1", name: "Marcus Johnson", handle: "@roofingtx", testimonial: "PrimeSignal completely transformed our business. Our new website is stunning and we've seen a 300% increase in qualified leads within the first three months. Best investment we've ever made.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-business-owne-1772651490341-54fa1f0a.png?_wi=1", imageAlt: "Marcus Johnson"
},
{
id: "2", name: "Sarah Chen", handle: "Landscaping Pro", testimonial: "From initial consultation to launch, the PrimeSignal team was incredibly professional. Our site loads faster, looks incredible, and most importantly, it converts. Highly recommend them to any business owner.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-busine-1772651490390-7b9ef09d.png", imageAlt: "Sarah Chen"},
id: "2", name: "Sarah Chen", handle: "Landscaping Pro", testimonial: "From initial consultation to launch, the PrimeSignal team was incredibly professional. Our site loads faster, looks incredible, and most importantly, it converts. Highly recommend them to any business owner.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-busine-1772651490390-7b9ef09d.png?_wi=1", imageAlt: "Sarah Chen"
},
{
id: "3", name: "David Martinez", handle: "Martinez Plumbing", testimonial: "We had an old website that was costing us business. PrimeSignal redesigned everything and made it mobile-friendly. Our phone now rings constantly with new customers. Worth every penny.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-business-owne-1772651490524-72a92781.png", imageAlt: "David Martinez"},
id: "3", name: "David Martinez", handle: "Martinez Plumbing", testimonial: "We had an old website that was costing us business. PrimeSignal redesigned everything and made it mobile-friendly. Our phone now rings constantly with new customers. Worth every penny.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-business-owne-1772651490524-72a92781.png?_wi=1", imageAlt: "David Martinez"
},
{
id: "4", name: "Jennifer Williams", handle: "Williams HVAC", testimonial: "The premium design and attention to detail is unmatched. PrimeSignal didn't just build us a website—they built us a lead-generating machine. Our business has never been better.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-entrep-1772651489974-d77adb76.png", imageAlt: "Jennifer Williams"},
id: "4", name: "Jennifer Williams", handle: "Williams HVAC", testimonial: "The premium design and attention to detail is unmatched. PrimeSignal didn't just build us a website—they built us a lead-generating machine. Our business has never been better.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-entrep-1772651489974-d77adb76.png?_wi=1", imageAlt: "Jennifer Williams"
},
{
id: "5", name: "Robert Thompson", handle: "Thompson Electric", testimonial: "I was skeptical about website ROI until I worked with PrimeSignal. The results speak for themselves: more traffic, more calls, more customers. They truly understand how to build websites that convert.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-male-business-1772651489944-9d0d28df.png", imageAlt: "Robert Thompson"},
id: "5", name: "Robert Thompson", handle: "Thompson Electric", testimonial: "I was skeptical about website ROI until I worked with PrimeSignal. The results speak for themselves: more traffic, more calls, more customers. They truly understand how to build websites that convert.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-male-business-1772651489944-9d0d28df.png?_wi=1", imageAlt: "Robert Thompson"
},
{
id: "6", name: "Michelle Anderson", handle: "Anderson Design Studio", testimonial: "What impressed me most was how PrimeSignal listened to our goals and delivered beyond expectations. Our new website perfectly represents our brand and has completely changed how we attract clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-busine-1772651491205-5f9f1d53.png", imageAlt: "Michelle Anderson"},
id: "6", name: "Michelle Anderson", handle: "Anderson Design Studio", testimonial: "What impressed me most was how PrimeSignal listened to our goals and delivered beyond expectations. Our new website perfectly represents our brand and has completely changed how we attract clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUdoegWOUpUgj0Yn66lSceHx8G/professional-headshot-of-a-female-busine-1772651491205-5f9f1d53.png?_wi=1", imageAlt: "Michelle Anderson"
},
]}
/>
</div>