diff --git a/app/about/about.module.css b/app/about/about.module.css
index 2bf8191..f55d45f 100644
--- a/app/about/about.module.css
+++ b/app/about/about.module.css
@@ -32,23 +32,28 @@
}
.breadcrumb {
- color: rgba(255, 255, 255, 0.8);
+ color: #fff;
font-size: 0.95rem;
}
.breadcrumb a {
- color: rgba(255, 255, 255, 0.8);
+ color: #fff;
text-decoration: none;
- transition: color 0.2s;
+ transition: opacity 0.2s;
+ font-weight: 400;
}
.breadcrumb a:hover {
- color: var(--primary);
+ opacity: 0.8;
}
.breadcrumb span {
- color: var(--primary);
- font-weight: 600;
+ color: #fff;
+ font-weight: 400;
+}
+
+.breadcrumb .breadcrumbActive {
+ font-weight: 700;
}
/* 1. Story Section (Image 3 Style) */
diff --git a/app/about/page.tsx b/app/about/page.tsx
index 213c994..ba5131f 100644
--- a/app/about/page.tsx
+++ b/app/about/page.tsx
@@ -18,7 +18,7 @@ export default function AboutPage() {
-
+
Built by Marketers
We understand the daily grind. Every feature is designed to solve real workflow challenges and save you hours every week.
@@ -86,7 +86,7 @@ export default function AboutPage() {
{/* Card 2: Orange */}
Data-Driven Success
Move beyond guesswork. Our advanced analytics give you the hard numbers you need to prove ROI and refine your strategy.
@@ -95,7 +95,7 @@ export default function AboutPage() {
{/* Card 3: Pink */}
-
+
Enterprise Power
Access the same robust tools used by top global agencies, priced perfectly for growing businesses and ambitious creators.
@@ -104,7 +104,7 @@ export default function AboutPage() {
{/* Card 4: Green */}
-
+
Secure & Reliable
Your brand's safety is non-negotiable. We prioritize expert-level security and 99.9% uptime reliability.
diff --git a/app/careers/careers.module.css b/app/careers/careers.module.css
index ed6b393..b4d753e 100644
--- a/app/careers/careers.module.css
+++ b/app/careers/careers.module.css
@@ -58,7 +58,7 @@
}
.breadcrumb {
- color: rgba(255, 255, 255, 0.8);
+ color: #fff;
font-size: 0.9rem;
margin-top: 1.5rem;
display: flex;
@@ -68,19 +68,23 @@
}
.breadcrumb a {
- color: white;
+ color: #fff;
text-decoration: none;
- font-weight: 500;
+ transition: opacity 0.2s;
+ font-weight: 400;
+}
+
+.breadcrumb a:hover {
+ opacity: 0.8;
}
.breadcrumb span {
- opacity: 0.6;
+ color: #fff;
+ font-weight: 400;
}
-.breadcrumb .active {
- color: var(--primary);
- /* Pink or Blue highlighting current page? or just Theme Color */
- color: #ec4899;
+.breadcrumb .breadcrumbActive {
+ font-weight: 700;
}
/* 1. What We Offer (Left Content, Right 3 Images) */
diff --git a/app/careers/page.tsx b/app/careers/page.tsx
index ba6d79f..7543092 100644
--- a/app/careers/page.tsx
+++ b/app/careers/page.tsx
@@ -21,7 +21,7 @@ export default function CareersPage() {
Careers
- Home / Careers
+ Home / Careers
@@ -124,34 +124,34 @@ export default function CareersPage() {
/>
- {/* Right: Process List */}
+ {/* Right: Solutions List */}
- Hiring Process
+ Our Solutions Centre
- Join in 3 Simple Steps
+ Comprehensive Platform Solutions
01
-
Share Your Expertise
-
Submit your application highlighting your experience in social strategy, content execution, or client support.
+
Intelligent Posting Automation
+
Schedule content using engagement-driven timing recommendations that help posts reach audiences when attention levels are highest.
02
-
Alignment Call
-
We'll discuss how your skills align with our core values of data-led performance and efficient execution.
+
Interactive Planning View
+
Map out campaigns visually with a flexible content planner that helps teams align messaging weeks or months ahead.
03
-
Join the Mission
-
Receive an offer and start helping global brands turn social activity into business wins.
+
Performance Insights & Exports
+
Access clear performance summaries with customizable reports that help evaluate results and communicate value to stakeholders.
diff --git a/app/channels/[slug]/channel-page.module.css b/app/channels/[slug]/channel-page.module.css
index 19bd6de..5b2a63c 100644
--- a/app/channels/[slug]/channel-page.module.css
+++ b/app/channels/[slug]/channel-page.module.css
@@ -54,7 +54,7 @@
.breadcrumbs {
font-size: 1rem;
- color: rgba(255, 255, 255, 0.9);
+ color: #fff;
display: flex;
align-items: center;
justify-content: center;
@@ -62,18 +62,23 @@
}
.breadcrumbs a {
- color: rgba(255, 255, 255, 0.9);
+ color: #fff;
text-decoration: none;
- transition: color 0.3s ease;
+ transition: opacity 0.3s ease;
+ font-weight: 400;
}
.breadcrumbs a:hover {
- color: #fff;
+ opacity: 0.8;
}
.breadcrumbs span {
color: #fff;
- font-weight: 600;
+ font-weight: 400;
+}
+
+.breadcrumbs .breadcrumbActive {
+ font-weight: 700;
}
/* --- Section 1: About (Icons) --- */
@@ -133,6 +138,12 @@
transform: translate(-50%, -50%) translate(-24px, 24px);
}
+@media (max-width: 500px) {
+ .aboutImageFrame {
+ display: none !important;
+ }
+}
+
.aboutContent {
padding-left: 1rem;
}
@@ -330,7 +341,7 @@
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
- align-items: center;
+ align-items: stretch;
max-width: 1000px;
margin: 0 auto;
}
@@ -344,11 +355,13 @@
/* Left Side: Large Image */
.sliderLeftImage {
transition: opacity 0.3s ease-in-out;
+ height: 100%;
}
.sliderImageWrapper {
width: 100%;
- aspect-ratio: 1;
+ height: 100%;
+ /* aspect-ratio removed for stretch */
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
@@ -364,6 +377,7 @@
/* Right Side: Content Box */
.sliderRightContent {
width: 100%;
+ height: 100%;
}
.testimonialCard {
@@ -375,6 +389,10 @@
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
position: relative;
overflow: hidden;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
}
/* Subtle background accent for the card if needed, currently gradient is enough */
diff --git a/app/channels/[slug]/page.tsx b/app/channels/[slug]/page.tsx
index dbf61dc..531c668 100644
--- a/app/channels/[slug]/page.tsx
+++ b/app/channels/[slug]/page.tsx
@@ -75,7 +75,7 @@ export default async function ChannelPage(props: PageProps) {
{channel.title}
- Home / Channels / {channel.title}
+ Home / Channels / {channel.title}
@@ -152,7 +152,10 @@ export default async function ChannelPage(props: PageProps) {
- {category.icon}
+
{category.category}
{category.features.map((feature, index) => (
-
{feature.icon}
+
+
+
{feature.title}
{feature.description}
diff --git a/app/globals.css b/app/globals.css
index db8c62a..62c63fc 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -260,7 +260,7 @@ section:nth-child(even) {
background-color: #ffffff;
/* Slate 100 - Distinct contrast */
border-top: 1px solid var(--border-color);
- border-bottom: 1px solid var(--border-color);
+ /* border-bottom: 1px solid var(--border-color); */
}
/* Ensure spacing consistency */
diff --git a/app/pricing/page.tsx b/app/pricing/page.tsx
index 26f1e35..cd46d92 100644
--- a/app/pricing/page.tsx
+++ b/app/pricing/page.tsx
@@ -47,7 +47,7 @@ export default function PricingPage() {
diff --git a/app/pricing/pricing.module.css b/app/pricing/pricing.module.css
index 11da431..a0ac195 100644
--- a/app/pricing/pricing.module.css
+++ b/app/pricing/pricing.module.css
@@ -38,7 +38,7 @@
.breadcrumb {
font-size: 1rem;
- color: rgba(255, 255, 255, 0.9);
+ color: #fff;
display: flex;
align-items: center;
justify-content: center;
@@ -46,18 +46,23 @@
}
.breadcrumb a {
- color: rgba(255, 255, 255, 0.9);
+ color: #fff;
text-decoration: none;
- transition: color 0.3s ease;
+ transition: opacity 0.3s ease;
+ font-weight: 400;
}
.breadcrumb a:hover {
- color: #fff;
+ opacity: 0.8;
}
.breadcrumb span {
color: #fff;
- font-weight: 600;
+ font-weight: 400;
+}
+
+.breadcrumb .breadcrumbActive {
+ font-weight: 700;
}
/* FAQ Section */
diff --git a/app/resources/[slug]/page.tsx b/app/resources/[slug]/page.tsx
index 2e162ba..2063ae5 100644
--- a/app/resources/[slug]/page.tsx
+++ b/app/resources/[slug]/page.tsx
@@ -49,7 +49,7 @@ export default async function ResourceDetailPage(props: PageProps) {
{resource.title}
- Home / Resources / {resource.title}
+ Home / Resources / {resource.title}
@@ -62,7 +62,6 @@ export default async function ResourceDetailPage(props: PageProps) {
src={resource.bigImage}
alt={resource.title}
className={styles.image}
- style={{ width: '100%', height: 'auto', display: 'block' }}
fallbackSrc={`https://placehold.co/1200x600/png?text=${encodeURIComponent(resource.title)}`}
/>
diff --git a/app/resources/page.tsx b/app/resources/page.tsx
index 1594f57..10d9685 100644
--- a/app/resources/page.tsx
+++ b/app/resources/page.tsx
@@ -17,7 +17,7 @@ export default function ResourcesPage() {