Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,36 +25,15 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Hire a Pro",
|
||||
id: "/hire",
|
||||
},
|
||||
{
|
||||
name: "Courses",
|
||||
id: "/courses",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Hire a Pro", id: "/hire" },
|
||||
{ name: "Courses", id: "/courses" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book Now", id: "/contact" }
|
||||
]}
|
||||
brandName="SignPro Services"
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
}}
|
||||
button={{ text: "Book Now", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -63,33 +42,14 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you travel nationwide?",
|
||||
content: "Yes, we travel across the US for corporate and private training.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Are your instructors certified?",
|
||||
content: "All our lead instructors hold national certifications.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Can I hire for a one-time event?",
|
||||
content: "Yes, we offer one-time interpretation and consultation services.",
|
||||
},
|
||||
{
|
||||
id: "q4",
|
||||
title: "Do you offer corporate packages?",
|
||||
content: "We offer tiered pricing for workplace compliance and teams.",
|
||||
},
|
||||
{
|
||||
id: "q5",
|
||||
title: "Is training online or in-person?",
|
||||
content: "We offer both flexible options to best suit your schedule.",
|
||||
},
|
||||
{ id: "q1", title: "Do you travel nationwide?", content: "Yes, we travel across the US for corporate and private training." },
|
||||
{ id: "q2", title: "Are your instructors certified?", content: "All our lead instructors hold national certifications." },
|
||||
{ id: "q3", title: "Can I hire for a one-time event?", content: "Yes, we offer one-time interpretation and consultation services." },
|
||||
{ id: "q4", title: "Do you offer corporate packages?", content: "We offer tiered pricing for workplace compliance and teams." },
|
||||
{ id: "q5", title: "Is training online or in-person?", content: "We offer both flexible options to best suit your schedule." }
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="We are here to help."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -97,9 +57,7 @@ export default function LandingPage() {
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Inquire about our professional services or request a booking session today."
|
||||
/>
|
||||
</div>
|
||||
@@ -107,34 +65,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Hire a Pro",
|
||||
href: "/hire",
|
||||
},
|
||||
{
|
||||
label: "Booking",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Courses", href: "/courses" }] },
|
||||
{ items: [{ label: "Hire a Pro", href: "/hire" }, { label: "Booking", href: "/contact" }] }
|
||||
]}
|
||||
logoText="SignPro Services"
|
||||
/>
|
||||
|
||||
299
src/app/page.tsx
299
src/app/page.tsx
@@ -28,101 +28,39 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Hire a Pro",
|
||||
id: "/hire",
|
||||
},
|
||||
{
|
||||
name: "Courses",
|
||||
id: "/courses",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Hire a Pro", id: "/hire" },
|
||||
{ name: "Courses", id: "/courses" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book Now", id: "/contact" }
|
||||
]}
|
||||
brandName="SignPro Services"
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
}}
|
||||
button={{ text: "Book Now", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Master ASL with Certified Professional Instructors"
|
||||
description="Nationwide training, corporate compliance, and specialized communication skills delivered online or in-person."
|
||||
buttons={[
|
||||
{
|
||||
text: "Browse Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
{
|
||||
text: "Book a Session",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg?_wi=1"
|
||||
buttons={[{ text: "Browse Courses", href: "/courses" }, { text: "Book a Session", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg",
|
||||
alt: "Portrait of young business man posing with crossed arms",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg",
|
||||
alt: "Business woman banner concept with copy space",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
|
||||
alt: "Portrait of smiley business woman",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
||||
alt: "Positive confident businesswoman wearing formal suit",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg",
|
||||
alt: "Pretty attractive young mixed race model",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg", alt: "Portrait of young business man posing with crossed arms" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg", alt: "Business woman banner concept with copy space" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", alt: "Portrait of smiley business woman" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Positive confident businesswoman wearing formal suit" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg", alt: "Pretty attractive young mixed race model" }
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Corporate Certified",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Nationwide Travel",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Expert Instructors",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Healthcare Specialized",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Law Enforcement Ready",
|
||||
},
|
||||
{ type: "text", text: "Corporate Certified" },
|
||||
{ type: "text", text: "Nationwide Travel" },
|
||||
{ type: "text", text: "Expert Instructors" },
|
||||
{ type: "text", text: "Healthcare Specialized" },
|
||||
{ type: "text", text: "Law Enforcement Ready" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -133,39 +71,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Online Courses",
|
||||
description: "Self-paced video modules from beginner to expert.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg?_wi=1",
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg?_wi=2",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{
|
||||
title: "In-Person Training",
|
||||
description: "Nationwide on-site training for private groups.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-something-hilarious-her-laptop_23-2148311791.jpg?_wi=1",
|
||||
},
|
||||
items: [],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{
|
||||
title: "Medical Training",
|
||||
description: "Healthcare-specific communication skills.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-man-sitting-desk-having-video-call-tablet_1098-20133.jpg",
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{ title: "Online Courses", description: "Self-paced video modules from beginner to expert.", media: { imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg" }, items: [], reverse: false },
|
||||
{ title: "In-Person Training", description: "Nationwide on-site training for private groups.", media: { imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-something-hilarious-her-laptop_23-2148311791.jpg" }, items: [], reverse: true },
|
||||
{ title: "Medical Training", description: "Healthcare-specific communication skills.", media: { imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-man-sitting-desk-having-video-call-tablet_1098-20133.jpg" }, items: [], reverse: false }
|
||||
]}
|
||||
title="Professional Services"
|
||||
description="Comprehensive ASL communication training for every industry."
|
||||
@@ -177,61 +85,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
date: "2023",
|
||||
title: "CEO",
|
||||
quote: "The corporate training was invaluable for our team communication.",
|
||||
tag: "Corporate",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg?_wi=3",
|
||||
imageAlt: "professional woman headshot",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael C.",
|
||||
date: "2023",
|
||||
title: "HR Manager",
|
||||
quote: "Professional, certified, and incredibly engaging instructors.",
|
||||
tag: "HR",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg?_wi=2",
|
||||
imageAlt: "professional woman headshot",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
date: "2023",
|
||||
title: "Nurse",
|
||||
quote: "I feel confident communicating with my patients now.",
|
||||
tag: "Healthcare",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-scientist_23-2148820194.jpg",
|
||||
imageAlt: "professional woman headshot",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
date: "2023",
|
||||
title: "Police Officer",
|
||||
quote: "Crucial training for our department. Highly recommended.",
|
||||
tag: "Law Enforcement",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-sports-man-happy-expression_1194-1587.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-something-hilarious-her-laptop_23-2148311791.jpg?_wi=2",
|
||||
imageAlt: "professional woman headshot",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Linda M.",
|
||||
date: "2023",
|
||||
title: "Teacher",
|
||||
quote: "The online course structure is top-notch. Very intuitive.",
|
||||
tag: "Education",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/unrecognizable-man-sitting-desk-having-video-call-tablet_1098-20133.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-with-disability-holding-green-screen-digital-tablet-senior-person-sitting-wheelchair-using-blank-copy-space-with-isolated-chroma-key-mock-up-background-display_482257-39047.jpg?_wi=1",
|
||||
imageAlt: "professional woman headshot",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", date: "2023", title: "CEO", quote: "The corporate training was invaluable for our team communication.", tag: "Corporate", avatarSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageSrc: "http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg", imageAlt: "professional woman headshot" },
|
||||
{ id: "2", name: "Michael C.", date: "2023", title: "HR Manager", quote: "Professional, certified, and incredibly engaging instructors.", tag: "HR", avatarSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg", imageAlt: "professional woman headshot" },
|
||||
{ id: "3", name: "Emily R.", date: "2023", title: "Nurse", quote: "I feel confident communicating with my patients now.", tag: "Healthcare", avatarSrc: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-scientist_23-2148820194.jpg", imageAlt: "professional woman headshot" },
|
||||
{ id: "4", name: "David K.", date: "2023", title: "Police Officer", quote: "Crucial training for our department. Highly recommended.", tag: "Law Enforcement", avatarSrc: "http://img.b2bpic.net/free-photo/young-sports-man-happy-expression_1194-1587.jpg", imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-something-hilarious-her-laptop_23-2148311791.jpg", imageAlt: "professional woman headshot" },
|
||||
{ id: "5", name: "Linda M.", date: "2023", title: "Teacher", quote: "The online course structure is top-notch. Very intuitive.", tag: "Education", avatarSrc: "http://img.b2bpic.net/free-photo/unrecognizable-man-sitting-desk-having-video-call-tablet_1098-20133.jpg", imageSrc: "http://img.b2bpic.net/free-photo/old-woman-with-disability-holding-green-screen-digital-tablet-senior-person-sitting-wheelchair-using-blank-copy-space-with-isolated-chroma-key-mock-up-background-display_482257-39047.jpg", imageAlt: "professional woman headshot" }
|
||||
]}
|
||||
title="What Our Students Say"
|
||||
description="Join hundreds of professionals who have mastered ASL."
|
||||
@@ -246,60 +104,16 @@ export default function LandingPage() {
|
||||
title="Community Voices"
|
||||
description="What our students and corporate partners are saying about their journey."
|
||||
kpiItems={[
|
||||
{
|
||||
value: "500+",
|
||||
label: "Happy Students",
|
||||
},
|
||||
{
|
||||
value: "12+",
|
||||
label: "Industries Served",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Satisfaction Rate",
|
||||
},
|
||||
{ value: "500+", label: "Happy Students" },
|
||||
{ value: "12+", label: "Industries Served" },
|
||||
{ value: "98%", label: "Satisfaction Rate" }
|
||||
]}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Alice T.",
|
||||
role: "Manager",
|
||||
company: "TechCorp",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Bob B.",
|
||||
role: "Analyst",
|
||||
company: "FinancePro",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2550.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Carol D.",
|
||||
role: "Nurse",
|
||||
company: "City Hospital",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David L.",
|
||||
role: "Teacher",
|
||||
company: "Public Schools",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Eve M.",
|
||||
role: "Admin",
|
||||
company: "Local Govt",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-businesswoman-showing-thumb-up_1262-5866.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Alice T.", role: "Manager", company: "TechCorp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg" },
|
||||
{ id: "t2", name: "Bob B.", role: "Analyst", company: "FinancePro", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2550.jpg" },
|
||||
{ id: "t3", name: "Carol D.", role: "Nurse", company: "City Hospital", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg" },
|
||||
{ id: "t4", name: "David L.", role: "Teacher", company: "Public Schools", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg" },
|
||||
{ id: "t5", name: "Eve M.", role: "Admin", company: "Local Govt", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-young-businesswoman-showing-thumb-up_1262-5866.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -307,50 +121,17 @@ export default function LandingPage() {
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Ready to Start Signing? Book Your First Session Today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Session",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book Session", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Hire a Pro",
|
||||
href: "/hire",
|
||||
},
|
||||
{
|
||||
label: "Booking",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Courses", href: "/courses" }] },
|
||||
{ items: [{ label: "Hire a Pro", href: "/hire" }, { label: "Booking", href: "/contact" }] }
|
||||
]}
|
||||
logoText="SignPro Services"
|
||||
/>
|
||||
|
||||
@@ -6,7 +6,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -24,36 +24,15 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Hire a Pro",
|
||||
id: "/hire",
|
||||
},
|
||||
{
|
||||
name: "Courses",
|
||||
id: "/courses",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book Now",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Hire a Pro", id: "/hire" },
|
||||
{ name: "Courses", id: "/courses" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book Now", id: "/contact" }
|
||||
]}
|
||||
brandName="SignPro Services"
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
}}
|
||||
button={{ text: "Book Now", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -63,28 +42,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Corporate Training",
|
||||
description: "On-site ASL communication compliance.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-with-disability-holding-green-screen-digital-tablet-senior-person-sitting-wheelchair-using-blank-copy-space-with-isolated-chroma-key-mock-up-background-display_482257-39047.jpg?_wi=2",
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg?_wi=4",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{
|
||||
title: "Law Enforcement",
|
||||
description: "Rapid response ASL for police departments.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-employee-taking-notes_23-2149045946.jpg",
|
||||
},
|
||||
items: [],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg?_wi=3",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{ title: "Corporate Training", description: "On-site ASL communication compliance.", media: { imageSrc: "http://img.b2bpic.net/free-photo/old-woman-with-disability-holding-green-screen-digital-tablet-senior-person-sitting-wheelchair-using-blank-copy-space-with-isolated-chroma-key-mock-up-background-display_482257-39047.jpg" }, items: [], reverse: false },
|
||||
{ title: "Law Enforcement", description: "Rapid response ASL for police departments.", media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-employee-taking-notes_23-2149045946.jpg" }, items: [], reverse: true }
|
||||
]}
|
||||
title="Our Professional Services"
|
||||
description="Specialized training pathways tailored to your needs."
|
||||
@@ -97,28 +56,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Public Classes",
|
||||
description: "Scheduled weekly group sessions.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-home-having-videocall-with-family-close-up_23-2148923800.jpg",
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-glasses-dark-looks-computer-screen-copy-space_169016-14890.jpg?_wi=5",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{
|
||||
title: "Private Sessions",
|
||||
description: "Custom 1-on-1 focus training.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-student-learning-english-online_23-2148999541.jpg",
|
||||
},
|
||||
items: [],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-home-couch-having-video-call-tablet-wearing-headphones_23-2148991609.jpg?_wi=4",
|
||||
imageAlt: "online ASL course interface",
|
||||
},
|
||||
{ title: "Public Classes", description: "Scheduled weekly group sessions.", media: { imageSrc: "http://img.b2bpic.net/free-photo/man-home-having-videocall-with-family-close-up_23-2148923800.jpg" }, items: [], reverse: false },
|
||||
{ title: "Private Sessions", description: "Custom 1-on-1 focus training.", media: { imageSrc: "http://img.b2bpic.net/free-photo/female-student-learning-english-online_23-2148999541.jpg" }, items: [], reverse: true }
|
||||
]}
|
||||
title="Public & Group Sessions"
|
||||
description="Join our growing community of signers."
|
||||
@@ -128,34 +67,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Hire a Pro",
|
||||
href: "/hire",
|
||||
},
|
||||
{
|
||||
label: "Booking",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Courses", href: "/courses" }] },
|
||||
{ items: [{ label: "Hire a Pro", href: "/hire" }, { label: "Booking", href: "/contact" }] }
|
||||
]}
|
||||
logoText="SignPro Services"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user