features page updated
This commit is contained in:
parent
a9e01f5d4f
commit
1761f073bf
@ -61,10 +61,211 @@
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.categorySection {
|
/* Why Choose Us Section */
|
||||||
margin-bottom: 5rem;
|
.whySection {
|
||||||
|
padding-top: 4rem;
|
||||||
|
padding-bottom: 4rem;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.whyGrid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 4rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.whyGrid {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagline {
|
||||||
|
color: var(--secondary);
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.whyTitle {
|
||||||
|
font-size: clamp(2rem, 4vw, 3rem);
|
||||||
|
color: var(--foreground);
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.whyDescription {
|
||||||
|
color: var(--foreground-secondary);
|
||||||
|
font-size: 1.125rem;
|
||||||
|
margin-bottom: 2.5rem;
|
||||||
|
line-height: 1.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitsRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 2rem;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 640px) {
|
||||||
|
.benefitsRow {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitItem {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitIconWrapper {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
background: rgba(37, 99, 235, 0.1);
|
||||||
|
/* Blue tint */
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitIcon {
|
||||||
|
color: var(--secondary);
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitText h3 {
|
||||||
|
font-size: 1.125rem;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
color: var(--foreground);
|
||||||
|
}
|
||||||
|
|
||||||
|
.benefitText p {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: var(--foreground-secondary);
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contactRow {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2rem;
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 640px) {
|
||||||
|
.contactRow {
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.profileMeta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profileImage,
|
||||||
|
.avatarPlaceholder {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
background: #e2e8f0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-weight: bold;
|
||||||
|
color: var(--foreground-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.profileName {
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--foreground);
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profileRole {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
color: var(--foreground-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contactInfo {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.phoneIcon {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
background: var(--secondary);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contactLabel {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
color: var(--foreground-secondary);
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contactNumber {
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--foreground);
|
||||||
|
}
|
||||||
|
|
||||||
|
.whyImageWrapper {
|
||||||
|
position: relative;
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.imageBackgroundShape {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 80%;
|
||||||
|
height: 90%;
|
||||||
|
background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
|
||||||
|
/* Purple to Blue */
|
||||||
|
border-radius: 200px 200px 0 0;
|
||||||
|
/* Semi-arch shape */
|
||||||
|
z-index: 0;
|
||||||
|
transform: rotate(-5deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainImageContainer {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
border-radius: var(--radius-xl);
|
||||||
|
overflow: hidden;
|
||||||
|
box-shadow: var(--shadow-xl);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainImage {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
object-fit: cover;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .categorySection {
|
||||||
|
margin-bottom: 5rem;
|
||||||
|
} */
|
||||||
|
|
||||||
.categoryHeader {
|
.categoryHeader {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -134,7 +335,7 @@
|
|||||||
padding: 4rem 0;
|
padding: 4rem 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: white;
|
color: white;
|
||||||
margin-top: 4rem;
|
/* margin-top: 4rem; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.ctaContent {
|
.ctaContent {
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
import type { Metadata } from 'next';
|
import type { Metadata } from 'next';
|
||||||
|
import Image from 'next/image';
|
||||||
|
import { CheckCircle2, TrendingUp, Shield, Phone } from 'lucide-react';
|
||||||
import styles from './features.module.css';
|
import styles from './features.module.css';
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@ -9,86 +11,38 @@ export const metadata: Metadata = {
|
|||||||
export default function FeaturesPage() {
|
export default function FeaturesPage() {
|
||||||
const detailedFeatures = [
|
const detailedFeatures = [
|
||||||
{
|
{
|
||||||
category: 'Content Management',
|
category: 'Core Features',
|
||||||
icon: '📝',
|
icon: '⚡',
|
||||||
features: [
|
features: [
|
||||||
{
|
{
|
||||||
title: 'Visual Content Calendar',
|
title: 'Workflow Automation',
|
||||||
description: 'Plan and organize your content with an intuitive drag-and-drop calendar interface.',
|
description: 'Streamline your social interactions with intelligent automation rules that work 24/7.',
|
||||||
icon: '📅',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Bulk Upload & Scheduling',
|
|
||||||
description: 'Upload and schedule hundreds of posts at once with CSV import functionality.',
|
|
||||||
icon: '⬆️',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Content Library',
|
|
||||||
description: 'Store and organize your media assets in a centralized, searchable library.',
|
|
||||||
icon: '📚',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
category: 'Analytics & Insights',
|
|
||||||
icon: '📊',
|
|
||||||
features: [
|
|
||||||
{
|
|
||||||
title: 'Real-Time Analytics',
|
|
||||||
description: 'Monitor your performance with live data updates and comprehensive metrics.',
|
|
||||||
icon: '📈',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Competitor Analysis',
|
|
||||||
description: 'Track and compare your performance against competitors in your industry.',
|
|
||||||
icon: '🎯',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Custom Reports',
|
|
||||||
description: 'Generate beautiful, white-labeled reports for clients and stakeholders.',
|
|
||||||
icon: '📄',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
category: 'Engagement Tools',
|
|
||||||
icon: '💬',
|
|
||||||
features: [
|
|
||||||
{
|
|
||||||
title: 'Unified Inbox',
|
|
||||||
description: 'Manage all your messages, comments, and mentions from one centralized inbox.',
|
|
||||||
icon: '📥',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Auto-Responses',
|
|
||||||
description: 'Set up automated responses for common questions and inquiries.',
|
|
||||||
icon: '🤖',
|
icon: '🤖',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Sentiment Analysis',
|
title: 'Secure Account Login',
|
||||||
description: 'Understand audience sentiment with AI-powered emotion detection.',
|
description: 'Connect and manage multiple social profiles securely with our encrypted login system.',
|
||||||
icon: '😊',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
category: 'Team Collaboration',
|
|
||||||
icon: '👥',
|
|
||||||
features: [
|
|
||||||
{
|
|
||||||
title: 'Role-Based Access',
|
|
||||||
description: 'Control permissions with customizable roles for team members.',
|
|
||||||
icon: '🔐',
|
icon: '🔐',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Approval Workflows',
|
title: 'Comment Management',
|
||||||
description: 'Set up multi-level approval processes for content review.',
|
description: 'Organize and oversee all user interactions from a single, unified dashboard.',
|
||||||
icon: '✅',
|
icon: '📝',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Team Activity Log',
|
title: 'Quick Engagement',
|
||||||
description: 'Track all team actions with a comprehensive audit trail.',
|
description: 'Boost your community presence by liking user comments instantly from the dashboard.',
|
||||||
icon: '📋',
|
icon: '❤️',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Smart Replies',
|
||||||
|
description: 'Respond efficiently to your audience using saved templates and quick-reply tools.',
|
||||||
|
icon: '↩️',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Spam Control',
|
||||||
|
description: 'Keep your comment sections clean by easily deleting unwanted or inappropriate content.',
|
||||||
|
icon: '🗑️',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -108,6 +62,78 @@ export default function FeaturesPage() {
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
{/* Why Choose Us Section */}
|
||||||
|
<section className={styles.whySection}>
|
||||||
|
<div className="container">
|
||||||
|
<div className={styles.whyGrid}>
|
||||||
|
<div className={styles.whyContent}>
|
||||||
|
<span className={styles.tagline}>WHY CHOOSE US</span>
|
||||||
|
<h2 className={styles.whyTitle}>Why Choose SocialBuddy</h2>
|
||||||
|
<p className={styles.whyDescription}>
|
||||||
|
We provide comprehensive social media solutions that help you automate workflows,
|
||||||
|
secure your accounts, and grow your digital presence authentically.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className={styles.benefitsRow}>
|
||||||
|
<div className={styles.benefitItem}>
|
||||||
|
<div className={styles.benefitIconWrapper}>
|
||||||
|
<TrendingUp className={styles.benefitIcon} />
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitText}>
|
||||||
|
<h3>Business Growth</h3>
|
||||||
|
<p>Accelerate your reach</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitItem}>
|
||||||
|
<div className={styles.benefitIconWrapper}>
|
||||||
|
<Shield className={styles.benefitIcon} />
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitText}>
|
||||||
|
<h3>Secure Access</h3>
|
||||||
|
<p>Encrypted login system</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.benefitsRow}>
|
||||||
|
<div className={styles.benefitItem}>
|
||||||
|
<div className={styles.benefitIconWrapper}>
|
||||||
|
<CheckCircle2 className={styles.benefitIcon} />
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitText}>
|
||||||
|
<h3>Knowledgeable</h3>
|
||||||
|
<p>Expert team support</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitItem}>
|
||||||
|
<div className={styles.benefitIconWrapper}>
|
||||||
|
<Phone className={styles.benefitIcon} />
|
||||||
|
</div>
|
||||||
|
<div className={styles.benefitText}>
|
||||||
|
<h3>24/7 Support</h3>
|
||||||
|
<p>Always here to help</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.whyImageWrapper}>
|
||||||
|
<div className={styles.imageBackgroundShape}></div>
|
||||||
|
<div className={styles.mainImageContainer}>
|
||||||
|
<Image
|
||||||
|
src="/about-image.png"
|
||||||
|
alt="SocialBuddy Features"
|
||||||
|
width={600}
|
||||||
|
height={700}
|
||||||
|
className={styles.mainImage}
|
||||||
|
priority
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
{/* Features Grid */}
|
{/* Features Grid */}
|
||||||
<section className="section">
|
<section className="section">
|
||||||
<div className="container">
|
<div className="container">
|
||||||
|
|||||||
@ -31,24 +31,24 @@ export default function Navbar() {
|
|||||||
const navLinks = [
|
const navLinks = [
|
||||||
{ href: '/', label: 'Home' },
|
{ href: '/', label: 'Home' },
|
||||||
{
|
{
|
||||||
href: '#',
|
href: '/features',
|
||||||
label: 'Features',
|
label: 'Features',
|
||||||
dropdown: [
|
// dropdown: [
|
||||||
{ href: '/features/publish', label: 'Publishing' },
|
// { href: '/features/publish', label: 'Publishing' },
|
||||||
{ href: '/features/analyze', label: 'Analytics' },
|
// { href: '/features/analyze', label: 'Analytics' },
|
||||||
{ href: '/features/engage', label: 'Engagement' },
|
// { href: '/features/engage', label: 'Engagement' },
|
||||||
{ href: '/features/create', label: 'Create' },
|
// { href: '/features/create', label: 'Create' },
|
||||||
{ href: '/features/start-page', label: 'Start Page' },
|
// { href: '/features/start-page', label: 'Start Page' },
|
||||||
{ href: '/features/ai-assistant', label: 'AI Assistant' },
|
// { href: '/features/ai-assistant', label: 'AI Assistant' },
|
||||||
]
|
// ]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
href: '#',
|
href: '#',
|
||||||
label: 'Channels',
|
label: 'Channels',
|
||||||
dropdown: [
|
dropdown: [
|
||||||
{ href: '/channels/facebook', label: 'Facebook' },
|
// { href: '/channels/facebook', label: 'Facebook' },
|
||||||
{ href: '/channels/instagram', label: 'Instagram' },
|
{ href: '/channels/instagram', label: 'Instagram' },
|
||||||
{ href: '/channels/youtube', label: 'YouTube' },
|
// { href: '/channels/youtube', label: 'YouTube' },
|
||||||
// { href: '/channels/linkedin', label: 'LinkedIn' },
|
// { href: '/channels/linkedin', label: 'LinkedIn' },
|
||||||
// { href: '/channels/twitter', label: 'Twitter (X)' },
|
// { href: '/channels/twitter', label: 'Twitter (X)' },
|
||||||
// { href: '/channels/tiktok', label: 'TikTok' },
|
// { href: '/channels/tiktok', label: 'TikTok' },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user