diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
new file mode 100644
index 0000000..327d8eb
--- /dev/null
+++ b/src/app/blog/page.tsx
@@ -0,0 +1,17 @@
+"use client";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
+
+export default function BlogPage() {
+ return (
+
+
+
+
Consulting Insights
+
Expert articles, trends, and business growth advice.
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 00b2b95..c04edb1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -7,8 +7,10 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
+import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
+import { Mail } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,22 +30,11 @@ export default function LandingPage() {
@@ -51,43 +42,14 @@ export default function LandingPage() {
@@ -97,9 +59,8 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Partners in Strategic Growth"
description={[
- "With decades of combined experience, Oakmont Consulting bridges the gap between vision and execution.",
- "We specialize in lean operational improvements, strategic financial modeling, and long-term organizational design.",
- ]}
+ "With decades of combined experience, Oakmont Consulting bridges the gap between vision and execution.", "We specialize in lean operational improvements, strategic financial modeling, and long-term organizational design."]}
+ buttons={[{ text: "Explore Our Approach", href: "#features" }]}
/>
@@ -109,36 +70,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
- {
- id: "s1",
- label: "Strategy",
- title: "Strategic Planning",
- items: [
- "Market Analysis",
- "Growth Roadmap",
- "Competitive Strategy",
- ],
- },
- {
- id: "s2",
- label: "Finance",
- title: "Operational Finance",
- items: [
- "Cash Flow Management",
- "Budget Optimization",
- "Profitability Audits",
- ],
- },
- {
- id: "s3",
- label: "Org",
- title: "Organizational Design",
- items: [
- "Leadership Development",
- "Team Alignment",
- "Change Management",
- ],
- },
+ { id: "s1", label: "Strategy", title: "Strategic Planning", items: ["Market Analysis", "Growth Roadmap", "Competitive Strategy"] },
+ { id: "s2", label: "Finance", title: "Operational Finance", items: ["Cash Flow Management", "Budget Optimization", "Profitability Audits"] },
+ { id: "s3", label: "Org", title: "Organizational Design", items: ["Leadership Development", "Team Alignment", "Change Management"] },
]}
title="Our Specialized Services"
description="Tailored consulting solutions designed to meet your company's specific needs."
@@ -146,81 +80,58 @@ export default function LandingPage() {
-
);
-}
+}
\ No newline at end of file
diff --git a/src/app/solutions/page.tsx b/src/app/solutions/page.tsx
new file mode 100644
index 0000000..855d2bd
--- /dev/null
+++ b/src/app/solutions/page.tsx
@@ -0,0 +1,17 @@
+"use client";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
+
+export default function SolutionsPage() {
+ return (
+
+
+
+
Our Solutions
+
Comprehensive consulting services tailored to drive business excellence.
+
+
+
+ );
+}
\ No newline at end of file