Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e470f7e830 | |||
| 11edfde0bc |
58
src/app/blog/page.tsx
Normal file
58
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
|
||||||
|
export default function BlogPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="mediumLarge"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="diagonal-gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleCentered
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Certificates", id: "/blog" }
|
||||||
|
]}
|
||||||
|
brandName="TechConsult Pro"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="blog" data-section="blog">
|
||||||
|
<BlogCardOne
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Certificates & Attestati"
|
||||||
|
description="Explore my professional certifications and validated expertise in the tech industry."
|
||||||
|
blogs={[
|
||||||
|
{ id: "c1", category: "Cloud", title: "AWS Solutions Architect", excerpt: "Advanced cloud infrastructure certification.", imageSrc: "https://img.b2bpic.net/free-photo/certification-diploma_1.jpg", authorName: "TechConsult Pro", authorAvatar: "", date: "2024" },
|
||||||
|
{ id: "c2", category: "Cybersecurity", title: "CISSP Certified", excerpt: "Industry standard for cybersecurity expertise.", imageSrc: "https://img.b2bpic.net/free-photo/certification-diploma_2.jpg", authorName: "TechConsult Pro", authorAvatar: "", date: "2023" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="TechConsult Pro"
|
||||||
|
columns={[{ title: "Company", items: [{ label: "About", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }]}
|
||||||
|
copyrightText="© 2024 TechConsult Pro. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
215
src/app/page.tsx
215
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Expertise",
|
name: "Home", id: "/"},
|
||||||
id: "expertise",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Metrics",
|
name: "Services", id: "expertise"},
|
||||||
id: "metrics",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Blog", id: "#"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Consulting",
|
name: "Landing", id: "/"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="TechConsult Pro"
|
brandName="TechConsult Pro"
|
||||||
/>
|
/>
|
||||||
@@ -55,19 +47,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
logoText="TechConsult Expert"
|
logoText="TechConsult Expert"
|
||||||
description="Helping B2B tech organizations drive digital transformation and scale revenue through specialized, high-impact consulting."
|
description="Helping B2B tech organizations drive digital transformation and scale revenue through specialized, high-impact consulting."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Consultation",
|
text: "Book Consultation", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View My Expertise",
|
text: "View My Expertise", href: "#expertise"},
|
||||||
href: "#expertise",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones-even-work_23-2149017716.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/man-woman-being-addicted-their-phones-even-work_23-2149017716.jpg"
|
||||||
imageAlt="digital technology transformation abstract"
|
imageAlt="digital technology transformation abstract"
|
||||||
@@ -80,24 +67,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Elevating your tech strategy to "},
|
||||||
content: "Elevating your tech strategy to ",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "the next level."},
|
||||||
content: "the next level.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/confident-businesswoman-holding-pen_1098-2049.jpg", alt: "business consultant modern office"},
|
||||||
src: "http://img.b2bpic.net/free-photo/confident-businesswoman-holding-pen_1098-2049.jpg",
|
|
||||||
alt: "business consultant modern office",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -109,31 +87,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "15+", title: "Years Experience", items: [
|
||||||
value: "15+",
|
"Deep tech expertise", "Enterprise-scale success"],
|
||||||
title: "Years Experience",
|
|
||||||
items: [
|
|
||||||
"Deep tech expertise",
|
|
||||||
"Enterprise-scale success",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "50+", title: "Clients Helped", items: [
|
||||||
value: "50+",
|
"Scale-ups and incumbents", "Global reach"],
|
||||||
title: "Clients Helped",
|
|
||||||
items: [
|
|
||||||
"Scale-ups and incumbents",
|
|
||||||
"Global reach",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "$100M+", title: "Value Created", items: [
|
||||||
value: "$100M+",
|
"Revenue optimization", "Efficiency gains"],
|
||||||
title: "Value Created",
|
|
||||||
items: [
|
|
||||||
"Revenue optimization",
|
|
||||||
"Efficiency gains",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Proven Results"
|
title="Proven Results"
|
||||||
@@ -147,23 +110,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Strategy Development",
|
title: "Strategy Development", description: "Defining your path to market dominance through rigorous technical assessment.", imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-988.jpg", imageAlt: "digital technology transformation abstract"},
|
||||||
description: "Defining your path to market dominance through rigorous technical assessment.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-988.jpg",
|
|
||||||
imageAlt: "digital technology transformation abstract",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Digital Transformation",
|
title: "Digital Transformation", description: "Modernizing legacy tech stacks to improve speed, reliability, and security.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", imageAlt: "business consultant modern office"},
|
||||||
description: "Modernizing legacy tech stacks to improve speed, reliability, and security.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg",
|
|
||||||
imageAlt: "business consultant modern office",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Revenue Optimization",
|
title: "Revenue Optimization", description: "Applying data analytics to maximize your existing customer value streams.", imageSrc: "http://img.b2bpic.net/free-photo/serious-colleagues-watching-discussing-content-computer-monitor-pointing-display-talking-while-sitting-meeting-room-with-panoramic-window-business-communication-concept_74855-11967.jpg", imageAlt: "digital technology transformation abstract"},
|
||||||
description: "Applying data analytics to maximize your existing customer value streams.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-colleagues-watching-discussing-content-computer-monitor-pointing-display-talking-while-sitting-meeting-room-with-panoramic-window-business-communication-concept_74855-11967.jpg",
|
|
||||||
imageAlt: "digital technology transformation abstract",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Core Consulting Areas"
|
title="Core Consulting Areas"
|
||||||
description="Targeted interventions for high-growth tech firms."
|
description="Targeted interventions for high-growth tech firms."
|
||||||
@@ -178,45 +129,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Miller", role: "CEO", company: "TechStream", rating: 5,
|
||||||
name: "Sarah Miller",
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg"},
|
||||||
role: "CEO",
|
|
||||||
company: "TechStream",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "David Chen", role: "CTO", company: "InnovateCore", rating: 5,
|
||||||
name: "David Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/positive-shaved-head-male-dressed-grey-suit-dark-grey-background_613910-11352.jpg"},
|
||||||
role: "CTO",
|
|
||||||
company: "InnovateCore",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-shaved-head-male-dressed-grey-suit-dark-grey-background_613910-11352.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Elena Rossi", role: "Product VP", company: "GlobalCloud", rating: 5,
|
||||||
name: "Elena Rossi",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-brutal-bearded-macho-male-dressed-suit-dark-grey-background_613910-1524.jpg"},
|
||||||
role: "Product VP",
|
|
||||||
company: "GlobalCloud",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-brutal-bearded-macho-male-dressed-suit-dark-grey-background_613910-1524.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Mark Johnson", role: "Founder", company: "SoftScale", rating: 5,
|
||||||
name: "Mark Johnson",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg"},
|
||||||
role: "Founder",
|
|
||||||
company: "SoftScale",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Priya Sharma", role: "Director", company: "NexusData", rating: 5,
|
||||||
name: "Priya Sharma",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-therapy_23-2148928793.jpg"},
|
||||||
role: "Director",
|
|
||||||
company: "NexusData",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-therapy_23-2148928793.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Client Success"
|
title="Client Success"
|
||||||
description="What leaders say about working together."
|
description="What leaders say about working together."
|
||||||
@@ -229,20 +155,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "How do we get started?", content: "We begin with a strategic discovery call to identify your key challenges."},
|
||||||
title: "How do we get started?",
|
|
||||||
content: "We begin with a strategic discovery call to identify your key challenges.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Is your consulting paid?", content: "Yes, I offer professional paid consulting to ensure dedicated focus and results."},
|
||||||
title: "Is your consulting paid?",
|
|
||||||
content: "Yes, I offer professional paid consulting to ensure dedicated focus and results.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Which industries do you serve?", content: "Primarily B2B tech firms, SaaS companies, and enterprise software providers."},
|
||||||
title: "Which industries do you serve?",
|
|
||||||
content: "Primarily B2B tech firms, SaaS companies, and enterprise software providers.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/server-farm-coworkers-using-device-doing-brainstorming_482257-117924.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/server-farm-coworkers-using-device-doing-brainstorming_482257-117924.jpg"
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
@@ -259,37 +176,19 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "discovery",
|
id: "discovery", badge: "Entry", price: "$1,500", subtitle: "Strategy Assessment", features: [
|
||||||
badge: "Entry",
|
"90-min Deep Dive", "Actionable Roadmap", "Follow-up Summary"],
|
||||||
price: "$1,500",
|
|
||||||
subtitle: "Strategy Assessment",
|
|
||||||
features: [
|
|
||||||
"90-min Deep Dive",
|
|
||||||
"Actionable Roadmap",
|
|
||||||
"Follow-up Summary",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Book Now",
|
text: "Book Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "transform",
|
id: "transform", badge: "Growth", price: "$5,000", subtitle: "Project Support", features: [
|
||||||
badge: "Growth",
|
"4 Weeks of Advisory", "Weekly Syncs", "Resource Kit Access"],
|
||||||
price: "$5,000",
|
|
||||||
subtitle: "Project Support",
|
|
||||||
features: [
|
|
||||||
"4 Weeks of Advisory",
|
|
||||||
"Weekly Syncs",
|
|
||||||
"Resource Kit Access",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Book Now",
|
text: "Book Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -305,22 +204,14 @@ export default function LandingPage() {
|
|||||||
description="Send a message and let's schedule a time to talk about your tech strategy."
|
description="Send a message and let's schedule a time to talk about your tech strategy."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Name",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Email Address", required: true,
|
||||||
type: "email",
|
|
||||||
placeholder: "Email Address",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message",
|
name: "message", placeholder: "Tell me about your business challenge", rows: 4,
|
||||||
placeholder: "Tell me about your business challenge",
|
|
||||||
rows: 4,
|
|
||||||
required: true,
|
required: true,
|
||||||
}}
|
}}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/laptop-desktop-blurred-background_169016-29249.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/laptop-desktop-blurred-background_169016-29249.jpg"
|
||||||
@@ -333,29 +224,19 @@ export default function LandingPage() {
|
|||||||
logoText="TechConsult Pro"
|
logoText="TechConsult Pro"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms",
|
label: "Terms", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user