nextworks 0.2.0-alpha.2 → 0.2.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +280 -228
- package/dist/cli_manifests/blocks_manifest.json +193 -194
- package/dist/commands/blocks.d.ts +3 -0
- package/dist/commands/blocks.d.ts.map +1 -1
- package/dist/commands/blocks.js +128 -19
- package/dist/commands/blocks.js.map +1 -1
- package/dist/commands/doctor.d.ts +136 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +696 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/remove-blocks.d.ts +4 -1
- package/dist/commands/remove-blocks.d.ts.map +1 -1
- package/dist/commands/remove-blocks.js +24 -6
- package/dist/commands/remove-blocks.js.map +1 -1
- package/dist/index.js +125 -4
- package/dist/index.js.map +1 -1
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
- package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
- package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
- package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
- package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
- package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
- package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
- package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
- package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
- package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
- package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
- package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
- package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
- package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
- package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
- package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
- package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
- package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
- package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
- package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
- package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
- package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
- package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
- package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
- package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
- package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
- package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
- package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
- package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
- package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
- package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
- package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
- package/dist/kits/blocks/components/sections/About.tsx +291 -291
- package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
- package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
- package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
- package/dist/kits/blocks/components/sections/Features.tsx +268 -270
- package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
- package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
- package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
- package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
- package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
- package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
- package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
- package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
- package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
- package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
- package/dist/kits/blocks/components/sections/Team.tsx +309 -309
- package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
- package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
- package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
- package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -34
- package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
- package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
- package/dist/kits/blocks/components/ui/button.tsx +122 -122
- package/dist/kits/blocks/components/ui/card.tsx +95 -95
- package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
- package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
- package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
- package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
- package/dist/kits/blocks/components/ui/input.tsx +27 -27
- package/dist/kits/blocks/components/ui/label.tsx +29 -29
- package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
- package/dist/kits/blocks/components/ui/select.tsx +25 -25
- package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
- package/dist/kits/blocks/components/ui/table.tsx +98 -98
- package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
- package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
- package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
- package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
- package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
- package/dist/kits/blocks/lib/themes.ts +400 -400
- package/dist/kits/blocks/lib/utils.ts +6 -9
- package/dist/kits/blocks/package-deps.json +40 -28
- package/dist/kits/blocks/tsconfig.json +11 -0
- package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/file-operations.d.ts +3 -1
- package/dist/utils/file-operations.d.ts.map +1 -1
- package/dist/utils/file-operations.js +84 -12
- package/dist/utils/file-operations.js.map +1 -1
- package/dist/utils/installation-tracker.d.ts +2 -2
- package/dist/utils/installation-tracker.d.ts.map +1 -1
- package/dist/utils/installation-tracker.js +11 -11
- package/dist/utils/installation-tracker.js.map +1 -1
- package/dist/utils/package-manager.d.ts +6 -0
- package/dist/utils/package-manager.d.ts.map +1 -0
- package/dist/utils/package-manager.js +58 -0
- package/dist/utils/package-manager.js.map +1 -0
- package/dist/utils/yarn-pnp.d.ts +6 -0
- package/dist/utils/yarn-pnp.d.ts.map +1 -0
- package/dist/utils/yarn-pnp.js +39 -0
- package/dist/utils/yarn-pnp.js.map +1 -0
- package/package.json +5 -2
- package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { ServicesGrid } from "@/components/sections/ServicesGrid";
|
|
5
|
-
|
|
6
|
-
const defaultServicesData = [
|
|
7
|
-
{
|
|
8
|
-
icon: "💻",
|
|
9
|
-
title: "Web Design & Development",
|
|
10
|
-
description:
|
|
11
|
-
"Custom websites that capture your brand and convert visitors into customers",
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
icon: "📈",
|
|
15
|
-
title: "SEO & Digital Marketing",
|
|
16
|
-
description:
|
|
17
|
-
"Get found on Google and drive qualified traffic to your website",
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
icon: "🛒",
|
|
21
|
-
title: "E-commerce Solutions",
|
|
22
|
-
description: "Online stores that maximize sales and customer experience",
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
icon: "🎨",
|
|
26
|
-
title: "Brand Identity & Design",
|
|
27
|
-
description: "Logo, branding, and visual identity that makes you stand out",
|
|
28
|
-
},
|
|
29
|
-
];
|
|
30
|
-
|
|
31
|
-
export function Services() {
|
|
32
|
-
return (
|
|
33
|
-
<section id="services">
|
|
34
|
-
<ServicesGrid
|
|
35
|
-
enableMotion={true}
|
|
36
|
-
section={{
|
|
37
|
-
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-900",
|
|
38
|
-
}}
|
|
39
|
-
container={{ className: "max-w-6xl mx-auto px-6" }}
|
|
40
|
-
heading={{
|
|
41
|
-
className:
|
|
42
|
-
"text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white text-center mb-8 md:mb-12",
|
|
43
|
-
}}
|
|
44
|
-
grid={{ className: "grid grid-cols-1 md:grid-cols-2 gap-6 md:gap-8" }}
|
|
45
|
-
card={{
|
|
46
|
-
className:
|
|
47
|
-
"bg-white dark:bg-gray-800 p-6 md:p-8 rounded-lg border border-gray-200 dark:border-gray-700 shadow-sm hover:shadow-md hover:-translate-y-1 transition-all duration-300",
|
|
48
|
-
}}
|
|
49
|
-
servicesData={defaultServicesData}
|
|
50
|
-
sectionHeading="Our Services"
|
|
51
|
-
ariaLabel="Services section"
|
|
52
|
-
/>
|
|
53
|
-
</section>
|
|
54
|
-
);
|
|
55
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { ServicesGrid } from "@/components/sections/ServicesGrid";
|
|
5
|
+
|
|
6
|
+
const defaultServicesData = [
|
|
7
|
+
{
|
|
8
|
+
icon: "💻",
|
|
9
|
+
title: "Web Design & Development",
|
|
10
|
+
description:
|
|
11
|
+
"Custom websites that capture your brand and convert visitors into customers",
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
icon: "📈",
|
|
15
|
+
title: "SEO & Digital Marketing",
|
|
16
|
+
description:
|
|
17
|
+
"Get found on Google and drive qualified traffic to your website",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
icon: "🛒",
|
|
21
|
+
title: "E-commerce Solutions",
|
|
22
|
+
description: "Online stores that maximize sales and customer experience",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
icon: "🎨",
|
|
26
|
+
title: "Brand Identity & Design",
|
|
27
|
+
description: "Logo, branding, and visual identity that makes you stand out",
|
|
28
|
+
},
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
export function Services() {
|
|
32
|
+
return (
|
|
33
|
+
<section id="services">
|
|
34
|
+
<ServicesGrid
|
|
35
|
+
enableMotion={true}
|
|
36
|
+
section={{
|
|
37
|
+
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-900",
|
|
38
|
+
}}
|
|
39
|
+
container={{ className: "max-w-6xl mx-auto px-6" }}
|
|
40
|
+
heading={{
|
|
41
|
+
className:
|
|
42
|
+
"text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white text-center mb-8 md:mb-12",
|
|
43
|
+
}}
|
|
44
|
+
grid={{ className: "grid grid-cols-1 md:grid-cols-2 gap-6 md:gap-8" }}
|
|
45
|
+
card={{
|
|
46
|
+
className:
|
|
47
|
+
"bg-white dark:bg-gray-800 p-6 md:p-8 rounded-lg border border-gray-200 dark:border-gray-700 shadow-sm hover:shadow-md hover:-translate-y-1 transition-all duration-300",
|
|
48
|
+
}}
|
|
49
|
+
servicesData={defaultServicesData}
|
|
50
|
+
sectionHeading="Our Services"
|
|
51
|
+
ariaLabel="Services section"
|
|
52
|
+
/>
|
|
53
|
+
</section>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { Team as SharedTeam } from "@/components/sections/Team";
|
|
5
|
-
|
|
6
|
-
export function Team() {
|
|
7
|
-
return (
|
|
8
|
-
<SharedTeam
|
|
9
|
-
section={{
|
|
10
|
-
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-900",
|
|
11
|
-
}}
|
|
12
|
-
card={{ className: "dark:bg-gray-800" }}
|
|
13
|
-
heading={{
|
|
14
|
-
className:
|
|
15
|
-
"text-4xl md:text-5xl lg:text-6xl font-bold text-[var(--heading-fg)]",
|
|
16
|
-
}}
|
|
17
|
-
subheading={{
|
|
18
|
-
className:
|
|
19
|
-
"text-xl md:text-2xl text-[var(--subheading-fg)] max-w-2xl mx-auto leading-relaxed",
|
|
20
|
-
}}
|
|
21
|
-
role={{
|
|
22
|
-
className:
|
|
23
|
-
"text-md font-semibold font-poppins text-fuchsia-600 dark:text-fuchsia-400",
|
|
24
|
-
}}
|
|
25
|
-
ariaLabel="Team section"
|
|
26
|
-
/>
|
|
27
|
-
);
|
|
28
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { Team as SharedTeam } from "@/components/sections/Team";
|
|
5
|
+
|
|
6
|
+
export function Team() {
|
|
7
|
+
return (
|
|
8
|
+
<SharedTeam
|
|
9
|
+
section={{
|
|
10
|
+
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-900",
|
|
11
|
+
}}
|
|
12
|
+
card={{ className: "dark:bg-gray-800" }}
|
|
13
|
+
heading={{
|
|
14
|
+
className:
|
|
15
|
+
"text-4xl md:text-5xl lg:text-6xl font-bold text-[var(--heading-fg)]",
|
|
16
|
+
}}
|
|
17
|
+
subheading={{
|
|
18
|
+
className:
|
|
19
|
+
"text-xl md:text-2xl text-[var(--subheading-fg)] max-w-2xl mx-auto leading-relaxed",
|
|
20
|
+
}}
|
|
21
|
+
role={{
|
|
22
|
+
className:
|
|
23
|
+
"text-md font-semibold font-poppins text-fuchsia-600 dark:text-fuchsia-400",
|
|
24
|
+
}}
|
|
25
|
+
ariaLabel="Team section"
|
|
26
|
+
/>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { Testimonials as SharedTestimonials } from "@/components/sections/Testimonials";
|
|
5
|
-
|
|
6
|
-
export function Testimonials() {
|
|
7
|
-
return (
|
|
8
|
-
<section id="testimonials">
|
|
9
|
-
<SharedTestimonials
|
|
10
|
-
testimonialSectionHeader="What Our Customers Say"
|
|
11
|
-
section={{
|
|
12
|
-
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-800",
|
|
13
|
-
}}
|
|
14
|
-
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
15
|
-
header={{ className: "text-center mb-12 md:mb-16" }}
|
|
16
|
-
heading={{
|
|
17
|
-
className:
|
|
18
|
-
"text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white",
|
|
19
|
-
}}
|
|
20
|
-
grid={{
|
|
21
|
-
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8",
|
|
22
|
-
}}
|
|
23
|
-
card={{
|
|
24
|
-
className:
|
|
25
|
-
"bg-white dark:bg-gray-900 p-6 rounded-lg shadow-md transition-transform duration-200 hover:-translate-y-1 border border-fuchsia-200/60 dark:border-fuchsia-800/40",
|
|
26
|
-
}}
|
|
27
|
-
text={{
|
|
28
|
-
className:
|
|
29
|
-
"text-gray-700 dark:text-gray-300 text-base leading-relaxed italic font-inter",
|
|
30
|
-
}}
|
|
31
|
-
author={{
|
|
32
|
-
className:
|
|
33
|
-
"text-gray-600 dark:text-gray-400 text-sm font-medium font-poppins",
|
|
34
|
-
}}
|
|
35
|
-
avatar={{
|
|
36
|
-
className:
|
|
37
|
-
"w-12 h-12 bg-fuchsia-600 text-white rounded-full flex items-center justify-center text-lg font-bold",
|
|
38
|
-
}}
|
|
39
|
-
avatarText={{
|
|
40
|
-
className: "text-white font-bold",
|
|
41
|
-
}}
|
|
42
|
-
testimonials={[
|
|
43
|
-
{
|
|
44
|
-
testimonialText:
|
|
45
|
-
"Nexus Digital transformed our online presence completely.",
|
|
46
|
-
testimonialAuthor: "- Sarah Chen, CEO of TechFlow",
|
|
47
|
-
testimonialAuthorInitials: "SC",
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
testimonialText: "The team delivered beyond expectations.",
|
|
51
|
-
testimonialAuthor: "- Marcus Rodriguez, GreenLeaf Wellness",
|
|
52
|
-
testimonialAuthorInitials: "MR",
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
testimonialText:
|
|
56
|
-
"Professional, fast, and results-driven. They understood our vision and brought it to life perfectly.",
|
|
57
|
-
testimonialAuthor: "- Jennifer Walsh, UrbanFit",
|
|
58
|
-
testimonialAuthorInitials: "JW",
|
|
59
|
-
},
|
|
60
|
-
]}
|
|
61
|
-
ariaLabel="Testimonials section"
|
|
62
|
-
/>
|
|
63
|
-
</section>
|
|
64
|
-
);
|
|
65
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { Testimonials as SharedTestimonials } from "@/components/sections/Testimonials";
|
|
5
|
+
|
|
6
|
+
export function Testimonials() {
|
|
7
|
+
return (
|
|
8
|
+
<section id="testimonials">
|
|
9
|
+
<SharedTestimonials
|
|
10
|
+
testimonialSectionHeader="What Our Customers Say"
|
|
11
|
+
section={{
|
|
12
|
+
className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-800",
|
|
13
|
+
}}
|
|
14
|
+
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
15
|
+
header={{ className: "text-center mb-12 md:mb-16" }}
|
|
16
|
+
heading={{
|
|
17
|
+
className:
|
|
18
|
+
"text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white",
|
|
19
|
+
}}
|
|
20
|
+
grid={{
|
|
21
|
+
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8",
|
|
22
|
+
}}
|
|
23
|
+
card={{
|
|
24
|
+
className:
|
|
25
|
+
"bg-white dark:bg-gray-900 p-6 rounded-lg shadow-md transition-transform duration-200 hover:-translate-y-1 border border-fuchsia-200/60 dark:border-fuchsia-800/40",
|
|
26
|
+
}}
|
|
27
|
+
text={{
|
|
28
|
+
className:
|
|
29
|
+
"text-gray-700 dark:text-gray-300 text-base leading-relaxed italic font-inter",
|
|
30
|
+
}}
|
|
31
|
+
author={{
|
|
32
|
+
className:
|
|
33
|
+
"text-gray-600 dark:text-gray-400 text-sm font-medium font-poppins",
|
|
34
|
+
}}
|
|
35
|
+
avatar={{
|
|
36
|
+
className:
|
|
37
|
+
"w-12 h-12 bg-fuchsia-600 text-white rounded-full flex items-center justify-center text-lg font-bold",
|
|
38
|
+
}}
|
|
39
|
+
avatarText={{
|
|
40
|
+
className: "text-white font-bold",
|
|
41
|
+
}}
|
|
42
|
+
testimonials={[
|
|
43
|
+
{
|
|
44
|
+
testimonialText:
|
|
45
|
+
"Nexus Digital transformed our online presence completely.",
|
|
46
|
+
testimonialAuthor: "- Sarah Chen, CEO of TechFlow",
|
|
47
|
+
testimonialAuthorInitials: "SC",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
testimonialText: "The team delivered beyond expectations.",
|
|
51
|
+
testimonialAuthor: "- Marcus Rodriguez, GreenLeaf Wellness",
|
|
52
|
+
testimonialAuthorInitials: "MR",
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
testimonialText:
|
|
56
|
+
"Professional, fast, and results-driven. They understood our vision and brought it to life perfectly.",
|
|
57
|
+
testimonialAuthor: "- Jennifer Walsh, UrbanFit",
|
|
58
|
+
testimonialAuthorInitials: "JW",
|
|
59
|
+
},
|
|
60
|
+
]}
|
|
61
|
+
ariaLabel="Testimonials section"
|
|
62
|
+
/>
|
|
63
|
+
</section>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import React from "react";
|
|
4
|
-
import { Navbar } from "./components/Navbar";
|
|
5
|
-
import { Hero } from "./components/Hero";
|
|
6
|
-
import { Services } from "./components/Services";
|
|
7
|
-
import { Testimonials } from "./components/Testimonials";
|
|
8
|
-
import { Process } from "./components/Process";
|
|
9
|
-
import { Portfolio } from "./components/Portfolio";
|
|
10
|
-
import { About } from "./components/About";
|
|
11
|
-
import { Team } from "./components/Team";
|
|
12
|
-
import { Pricing } from "./components/Pricing";
|
|
13
|
-
import { CTA } from "./components/CTA";
|
|
14
|
-
import { Contact } from "./components/Contact";
|
|
15
|
-
import { Footer } from "./components/Footer";
|
|
16
|
-
|
|
17
|
-
import { PresetThemeVars } from "./PresetThemeVars";
|
|
18
|
-
|
|
19
|
-
export default function Page() {
|
|
20
|
-
return (
|
|
21
|
-
<PresetThemeVars>
|
|
22
|
-
<main>
|
|
23
|
-
<Navbar />
|
|
24
|
-
<Hero />
|
|
25
|
-
<Services />
|
|
26
|
-
<Portfolio />
|
|
27
|
-
<Testimonials />
|
|
28
|
-
<Process />
|
|
29
|
-
<About />
|
|
30
|
-
<Team />
|
|
31
|
-
<Pricing />
|
|
32
|
-
<CTA />
|
|
33
|
-
<Contact />
|
|
34
|
-
<Footer />
|
|
35
|
-
</main>
|
|
36
|
-
</PresetThemeVars>
|
|
37
|
-
);
|
|
38
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { Navbar } from "./components/Navbar";
|
|
5
|
+
import { Hero } from "./components/Hero";
|
|
6
|
+
import { Services } from "./components/Services";
|
|
7
|
+
import { Testimonials } from "./components/Testimonials";
|
|
8
|
+
import { Process } from "./components/Process";
|
|
9
|
+
import { Portfolio } from "./components/Portfolio";
|
|
10
|
+
import { About } from "./components/About";
|
|
11
|
+
import { Team } from "./components/Team";
|
|
12
|
+
import { Pricing } from "./components/Pricing";
|
|
13
|
+
import { CTA } from "./components/CTA";
|
|
14
|
+
import { Contact } from "./components/Contact";
|
|
15
|
+
import { Footer } from "./components/Footer";
|
|
16
|
+
|
|
17
|
+
import { PresetThemeVars } from "./PresetThemeVars";
|
|
18
|
+
|
|
19
|
+
export default function Page() {
|
|
20
|
+
return (
|
|
21
|
+
<PresetThemeVars>
|
|
22
|
+
<main>
|
|
23
|
+
<Navbar />
|
|
24
|
+
<Hero />
|
|
25
|
+
<Services />
|
|
26
|
+
<Portfolio />
|
|
27
|
+
<Testimonials />
|
|
28
|
+
<Process />
|
|
29
|
+
<About />
|
|
30
|
+
<Team />
|
|
31
|
+
<Pricing />
|
|
32
|
+
<CTA />
|
|
33
|
+
<Contact />
|
|
34
|
+
<Footer />
|
|
35
|
+
</main>
|
|
36
|
+
</PresetThemeVars>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
@@ -1,85 +1,130 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { cn } from "@/lib/utils";
|
|
3
|
-
|
|
4
|
-
type Props = React.PropsWithChildren<{ className?: string }>;
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Gallery template token-bridge wrapper.
|
|
8
|
-
*
|
|
9
|
-
* Maps component-level CSS variables (btn, input, card, etc.) to the
|
|
10
|
-
* EnhancedThemeProvider token variables applied on :root (e.g., --primary,
|
|
11
|
-
* --foreground, --card, --ring).
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"[--input-
|
|
23
|
-
"[--input-
|
|
24
|
-
"[--input-
|
|
25
|
-
"[--input-
|
|
26
|
-
"[--input-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"[--card-
|
|
31
|
-
"[--card-fg:var(--
|
|
32
|
-
"[--card-
|
|
33
|
-
"[--card-
|
|
34
|
-
"[--card-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"[--badge-
|
|
39
|
-
"[--badge-
|
|
40
|
-
"[--badge-
|
|
41
|
-
"[--badge-active-
|
|
42
|
-
"[--badge-active-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"[--
|
|
47
|
-
"[--
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"[--
|
|
52
|
-
"[--
|
|
53
|
-
"[--
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"[--
|
|
57
|
-
"[--
|
|
58
|
-
"[--
|
|
59
|
-
"[--
|
|
60
|
-
|
|
61
|
-
"[--
|
|
62
|
-
"[--
|
|
63
|
-
"[--
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"[--
|
|
67
|
-
"[--
|
|
68
|
-
"[--
|
|
69
|
-
"[--
|
|
70
|
-
"[--
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"[--
|
|
74
|
-
"[--
|
|
75
|
-
"[--
|
|
76
|
-
"[--
|
|
77
|
-
"[--
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "@/lib/utils";
|
|
3
|
+
|
|
4
|
+
type Props = React.PropsWithChildren<{ className?: string }>;
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Gallery template token-bridge wrapper.
|
|
8
|
+
*
|
|
9
|
+
* Maps component-level CSS variables (btn, input, card, etc.) to the
|
|
10
|
+
* EnhancedThemeProvider token variables applied on :root (e.g., --primary,
|
|
11
|
+
* --foreground, --card, --ring). Colors are driven by the selected Color Theme, not a fixed preset palette.
|
|
12
|
+
*/
|
|
13
|
+
export function PresetThemeVars({ className, children }: Props) {
|
|
14
|
+
return (
|
|
15
|
+
<div
|
|
16
|
+
className={cn(
|
|
17
|
+
// Buttons (leave bg/fg unset by default so tokenized variants can apply; set ring here)
|
|
18
|
+
"[--btn-ring:var(--ring)]",
|
|
19
|
+
|
|
20
|
+
// Inputs
|
|
21
|
+
"[--input-bg:var(--background)]",
|
|
22
|
+
"[--input-fg:var(--foreground)]",
|
|
23
|
+
"[--input-placeholder:var(--muted-foreground)]",
|
|
24
|
+
"[--input-border:var(--input)]",
|
|
25
|
+
"[--input-focus-ring:var(--ring)]",
|
|
26
|
+
"[--input-ring-offset:var(--background)]",
|
|
27
|
+
|
|
28
|
+
// Cards
|
|
29
|
+
"[--card-bg:var(--card)]",
|
|
30
|
+
"[--card-fg:var(--card-foreground)]",
|
|
31
|
+
"[--card-title-fg:var(--foreground)]",
|
|
32
|
+
"[--card-muted-fg:var(--muted-foreground)]",
|
|
33
|
+
"[--card-border:var(--border)]",
|
|
34
|
+
"[--card-shadow:0_6px_20px_rgba(0,0,0,0.06)]",
|
|
35
|
+
|
|
36
|
+
// Badges/Chips (align to accent; active uses primary)
|
|
37
|
+
"[--badge-bg:var(--accent)]",
|
|
38
|
+
"[--badge-fg:var(--accent-foreground)]",
|
|
39
|
+
"[--badge-border:var(--border)]",
|
|
40
|
+
"[--badge-active-bg:var(--primary)]",
|
|
41
|
+
"[--badge-active-fg:var(--primary-foreground)]",
|
|
42
|
+
"[--badge-active-border:var(--primary)]",
|
|
43
|
+
|
|
44
|
+
// Typography helpers
|
|
45
|
+
"[--heading-fg:var(--foreground)]",
|
|
46
|
+
"[--subheading-fg:var(--muted-foreground)]",
|
|
47
|
+
"[--description-fg:var(--foreground)]",
|
|
48
|
+
|
|
49
|
+
// Hero product demo
|
|
50
|
+
"[--hero-cta-primary-bg:var(--primary)]",
|
|
51
|
+
"[--hero-cta-primary-fg:var(--primary-foreground)]",
|
|
52
|
+
"[--hero-cta-primary-hover-bg:var(--primary-foreground)]",
|
|
53
|
+
"[--hero-cta-primary-hover-fg:var(--primary)]]",
|
|
54
|
+
|
|
55
|
+
"[--hero-cta-secondary-bg:transparent]",
|
|
56
|
+
"[--hero-cta-secondary-fg:var(--primary)]",
|
|
57
|
+
"[--hero-cta-secondary-border:color-mix(in oklab, var(--primary) 38%, var(--border))]",
|
|
58
|
+
"[--hero-cta-secondary-hover-bg:color-mix(in oklab, var(--primary) 10%, var(--background))]",
|
|
59
|
+
"[--hero-cta-secondary-hover-fg:var(--primary)]",
|
|
60
|
+
|
|
61
|
+
"[--demo-shell-bg:var(--background)]",
|
|
62
|
+
"[--demo-shell-muted-bg:color-mix(in oklab, var(--background) 88%, var(--muted))]",
|
|
63
|
+
"[--demo-shell-strong-bg:var(--card)]",
|
|
64
|
+
"[--demo-panel-bg:var(--card)]",
|
|
65
|
+
"[--demo-panel-muted-bg:color-mix(in oklab, var(--card) 92%, var(--background))]",
|
|
66
|
+
"[--demo-panel-subtle-bg:color-mix(in oklab, var(--muted) 84%, var(--background))]",
|
|
67
|
+
"[--demo-panel-strong-bg:color-mix(in oklab, var(--card) 88%, var(--primary) 12%)]",
|
|
68
|
+
"[--demo-code-bg:color-mix(in oklab, var(--card) 96%, var(--background))]",
|
|
69
|
+
"[--demo-code-gutter-bg:color-mix(in oklab, var(--muted) 86%, var(--background))]",
|
|
70
|
+
"[--demo-border:var(--border)]",
|
|
71
|
+
"[--demo-border-strong:var(--primary)]",
|
|
72
|
+
"[--demo-fg:var(--foreground)]",
|
|
73
|
+
"[--demo-muted-fg:var(--muted-foreground)]",
|
|
74
|
+
"[--demo-subtle-fg:color-mix(in oklab, var(--muted-foreground) 78%, var(--foreground))]",
|
|
75
|
+
"[--demo-accent:var(--primary)]",
|
|
76
|
+
"[--demo-accent-soft-bg:color-mix(in oklab, var(--primary) 12%, var(--background))]",
|
|
77
|
+
"[--demo-info:var(--primary)]",
|
|
78
|
+
"[--demo-info-border:color-mix(in oklab, var(--primary) 30%, var(--border))]",
|
|
79
|
+
"[--demo-info-soft-bg:color-mix(in oklab, var(--primary) 10%, var(--background))]",
|
|
80
|
+
"[--demo-success:var(--chart-2)]",
|
|
81
|
+
"[--demo-success-border:color-mix(in oklab, var(--chart-2) 30%, var(--border))]",
|
|
82
|
+
"[--demo-success-soft-bg:color-mix(in oklab, var(--chart-2) 10%, var(--background))]",
|
|
83
|
+
"[--demo-warning:var(--chart-4)]",
|
|
84
|
+
"[--demo-warning-border:color-mix(in oklab, var(--chart-4) 30%, var(--border))]",
|
|
85
|
+
"[--demo-warning-soft-bg:color-mix(in oklab, var(--chart-4) 10%, var(--background))]",
|
|
86
|
+
"[--demo-danger:var(--chart-5)]",
|
|
87
|
+
"[--demo-danger-border:color-mix(in oklab, var(--chart-5) 30%, var(--border))]",
|
|
88
|
+
"[--demo-danger-soft-bg:color-mix(in oklab, var(--chart-5) 10%, var(--background))]",
|
|
89
|
+
"[--demo-scroll-track:color-mix(in oklab, var(--border) 70%, transparent)]",
|
|
90
|
+
"[--demo-scroll-thumb:linear-gradient(180deg, var(--primary), var(--accent))]",
|
|
91
|
+
"[--demo-shell-shadow:0_24px_80px_-44px_rgba(15,23,42,0.24)]",
|
|
92
|
+
"[--demo-shell-ring:color-mix(in oklab, var(--primary) 18%, transparent)]",
|
|
93
|
+
|
|
94
|
+
// Process timeline
|
|
95
|
+
|
|
96
|
+
"[--process-step-bg:var(--primary)]",
|
|
97
|
+
"[--process-step-fg:var(--primary-foreground)]",
|
|
98
|
+
"[--process-connector:var(--border)]",
|
|
99
|
+
|
|
100
|
+
// Footer
|
|
101
|
+
"[--footer-bg:transparent]",
|
|
102
|
+
"[--footer-fg:var(--foreground)]",
|
|
103
|
+
"[--footer-heading-fg:var(--foreground)]",
|
|
104
|
+
"[--footer-link-fg:var(--muted-foreground)]",
|
|
105
|
+
"[--footer-link-hover-fg:var(--primary)]",
|
|
106
|
+
"[--footer-link-hover-bg:color-mix(in oklab, var(--primary) 12%, transparent)]",
|
|
107
|
+
"[--footer-muted-fg:var(--muted-foreground)]",
|
|
108
|
+
"[--footer-border:var(--border)]",
|
|
109
|
+
|
|
110
|
+
// Table (optional)
|
|
111
|
+
"[--table-fg:inherit]",
|
|
112
|
+
"[--table-muted-fg:var(--muted-foreground)]",
|
|
113
|
+
"[--table-head-fg:var(--foreground)]",
|
|
114
|
+
"[--table-border:var(--border)]",
|
|
115
|
+
"[--table-row-hover-bg:var(--muted)]",
|
|
116
|
+
|
|
117
|
+
// Navbar
|
|
118
|
+
"[--navbar-toggle-bg:var(--background)]",
|
|
119
|
+
"[--navbar-hover-bg:color-mix(in oklab, var(--primary) 12%, transparent)]",
|
|
120
|
+
"[--navbar-ring:var(--ring)]",
|
|
121
|
+
"[--navbar-border:var(--border)]",
|
|
122
|
+
"[--navbar-accent:var(--foreground)]",
|
|
123
|
+
|
|
124
|
+
className,
|
|
125
|
+
)}
|
|
126
|
+
>
|
|
127
|
+
{children}
|
|
128
|
+
</div>
|
|
129
|
+
);
|
|
130
|
+
}
|