Merge version_5 into main #14

Merged
bender merged 2 commits from version_5 into main 2026-03-08 19:18:03 +00:00
2 changed files with 17 additions and 51 deletions

View File

@@ -1,13 +1,12 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "CoachFlow - Business Coaching & Digital Agency Services", description: "Transform your business with expert coaching, web design, advertising, social media management, and AI call assistant solutions."};
title: "webpidico - Digital Solutions & Coaching", description: "Transform your business with expert digital solutions and professional coaching services."};
export default function RootLayout({
children,
@@ -19,21 +18,16 @@ export default function RootLayout({
<body className={inter.className}>
{children}
<script
async
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
></script>
<script>
{`
const lenis = new Lenis();
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
`}
</script>
dangerouslySetInnerHTML={{
__html: `
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
<script
dangerouslySetInnerHTML={{

View File

@@ -5,7 +5,6 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import TeamCardTen from "@/components/sections/team/TeamCardTen";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactText from "@/components/sections/contact/ContactText";
@@ -28,11 +27,10 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="CoachFlow"
brandName="webpidico"
navItems={[
{ name: "Services", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "team" },
{ name: "Testimonials", id: "testimonial" },
{ name: "FAQ", id: "faq" }
]}
@@ -181,31 +179,6 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardTen
title="Meet Our Expert Team"
tag="Our Team"
tagAnimation="slide-up"
members={[
{
id: "1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg", imageAlt: "Sarah Mitchell, Creative Director"
},
{
id: "2", name: "David Chen", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg", imageAlt: "David Chen, Digital Strategist"
},
{
id: "3", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg", imageAlt: "Elena Rodriguez, Lead Developer"
},
{
id: "4", name: "James Patterson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-hispanic-female-executive-wearing-eyeglasses-standing-studio_662251-664.jpg", imageAlt: "James Patterson, Marketing Manager"
}
]}
memberVariant="default"
membersAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardSixteen
title="What Our Clients Say"
@@ -285,7 +258,7 @@ export default function LandingPage() {
animationType="entrance-slide"
buttons={[
{ text: "Schedule Free Consultation", href: "https://calendly.com" },
{ text: "Contact Us", href: "mailto:hello@coachflow.com" }
{ text: "Contact Us", href: "mailto:hello@webpidico.com" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -294,25 +267,24 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="CoachFlow"
logoText="webpidico"
columns={[
{
items: [
{ label: "Services", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "About", href: "#team" }
{ label: "Testimonials", href: "#testimonial" }
]
},
{
items: [
{ label: "Testimonials", href: "#testimonial" },
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" }
{ label: "Contact", href: "#contact" },
{ label: "Privacy Policy", href: "#" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Careers", href: "#" }
]