@nextworks/blocks-sections 0.1.0-alpha.0
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 +44 -0
- package/dist/components/About.d.ts +93 -0
- package/dist/components/About.d.ts.map +1 -0
- package/dist/components/About.js +129 -0
- package/dist/components/About.jsx +153 -0
- package/dist/components/CTA.d.ts +118 -0
- package/dist/components/CTA.d.ts.map +1 -0
- package/dist/components/CTA.js +58 -0
- package/dist/components/CTA.jsx +88 -0
- package/dist/components/Contact.d.ts +111 -0
- package/dist/components/Contact.d.ts.map +1 -0
- package/dist/components/Contact.js +82 -0
- package/dist/components/Contact.jsx +107 -0
- package/dist/components/FAQ.d.ts +89 -0
- package/dist/components/FAQ.d.ts.map +1 -0
- package/dist/components/FAQ.js +78 -0
- package/dist/components/FAQ.jsx +98 -0
- package/dist/components/Features.d.ts +111 -0
- package/dist/components/Features.d.ts.map +1 -0
- package/dist/components/Features.js +109 -0
- package/dist/components/Features.jsx +122 -0
- package/dist/components/Footer.d.ts +120 -0
- package/dist/components/Footer.d.ts.map +1 -0
- package/dist/components/Footer.js +101 -0
- package/dist/components/Footer.jsx +138 -0
- package/dist/components/HeroMotion.d.ts +107 -0
- package/dist/components/HeroMotion.d.ts.map +1 -0
- package/dist/components/HeroMotion.js +55 -0
- package/dist/components/HeroMotion.jsx +95 -0
- package/dist/components/HeroOverlay.d.ts +116 -0
- package/dist/components/HeroOverlay.d.ts.map +1 -0
- package/dist/components/HeroOverlay.js +111 -0
- package/dist/components/HeroOverlay.jsx +141 -0
- package/dist/components/HeroSplit.d.ts +98 -0
- package/dist/components/HeroSplit.d.ts.map +1 -0
- package/dist/components/HeroSplit.js +100 -0
- package/dist/components/HeroSplit.jsx +134 -0
- package/dist/components/Navbar.d.ts +112 -0
- package/dist/components/Navbar.d.ts.map +1 -0
- package/dist/components/Navbar.js +80 -0
- package/dist/components/Navbar.jsx +127 -0
- package/dist/components/Newsletter.d.ts +59 -0
- package/dist/components/Newsletter.d.ts.map +1 -0
- package/dist/components/Newsletter.js +34 -0
- package/dist/components/Newsletter.jsx +54 -0
- package/dist/components/PortfolioSimple.d.ts +137 -0
- package/dist/components/PortfolioSimple.d.ts.map +1 -0
- package/dist/components/PortfolioSimple.js +180 -0
- package/dist/components/PortfolioSimple.jsx +259 -0
- package/dist/components/Pricing.d.ts +96 -0
- package/dist/components/Pricing.d.ts.map +1 -0
- package/dist/components/Pricing.js +91 -0
- package/dist/components/Pricing.jsx +103 -0
- package/dist/components/ProcessTimeline.d.ts +121 -0
- package/dist/components/ProcessTimeline.d.ts.map +1 -0
- package/dist/components/ProcessTimeline.js +88 -0
- package/dist/components/ProcessTimeline.jsx +151 -0
- package/dist/components/ServicesGrid.d.ts +64 -0
- package/dist/components/ServicesGrid.d.ts.map +1 -0
- package/dist/components/ServicesGrid.js +72 -0
- package/dist/components/ServicesGrid.jsx +97 -0
- package/dist/components/Team.d.ts +115 -0
- package/dist/components/Team.d.ts.map +1 -0
- package/dist/components/Team.js +107 -0
- package/dist/components/Team.jsx +135 -0
- package/dist/components/Testimonials.d.ts +81 -0
- package/dist/components/Testimonials.d.ts.map +1 -0
- package/dist/components/Testimonials.js +46 -0
- package/dist/components/Testimonials.jsx +58 -0
- package/dist/components/TrustBadges.d.ts +80 -0
- package/dist/components/TrustBadges.d.ts.map +1 -0
- package/dist/components/TrustBadges.js +46 -0
- package/dist/components/TrustBadges.jsx +64 -0
- package/dist/components/index.d.ts +21 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/index.js +18 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/package.json +26 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import React, { useMemo, useState } from "react";
|
|
3
|
+
import { cn } from "@nextworks/blocks-core";
|
|
4
|
+
import { ChevronDown, ChevronUp } from "lucide-react";
|
|
5
|
+
// const defaultFaqData: FAQS[] = [
|
|
6
|
+
// {
|
|
7
|
+
// question: "What does IntelliOpAI do?",
|
|
8
|
+
// answer: "Automates ops with real-time insights.",
|
|
9
|
+
// },
|
|
10
|
+
// {
|
|
11
|
+
// question: "Do I need coding skills?",
|
|
12
|
+
// answer: "No, it's designed for ease of use.",
|
|
13
|
+
// },
|
|
14
|
+
// ];
|
|
15
|
+
const defaultFaqData = [
|
|
16
|
+
{
|
|
17
|
+
question: "What does IntelliOpAI do?",
|
|
18
|
+
answer: "Automates ops with real-time insights.",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
question: "How secure is my data?",
|
|
22
|
+
answer: "We use industry-standard encryption and strict access controls.",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
question: "Can I integrate with other tools?",
|
|
26
|
+
answer: "Yes — supports APIs and popular integrations like Slack, GitHub, and Jira.",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
question: "How do I get support?",
|
|
30
|
+
answer: "Contact our support team via in-app chat or the help center for assistance.",
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
/**
|
|
34
|
+
* Expandable FAQ section with accessible toggles and optional icons.
|
|
35
|
+
*
|
|
36
|
+
* @remarks
|
|
37
|
+
* - Supports multiple or single open item behavior via allowMultipleOpen.
|
|
38
|
+
* - Uses button with aria-expanded and a region with aria-labelledby.
|
|
39
|
+
* - Motion can be disabled via enableMotion for reduced animation.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* <FAQ faqData={[{ question: 'What is X?', answer: 'Y' }]} />
|
|
43
|
+
*/
|
|
44
|
+
export function FAQ({ faqSectionHeaderText = "Frequently Asked Questions", faqData = defaultFaqData, sectionId = "faq", className, allowMultipleOpen = true, defaultOpenIndices = [], openIcon, closedIcon, ariaLabel = "Frequently asked questions section", section = { className: "py-10 px-5 bg-muted text-foreground" }, container = { className: "mx-auto max-w-7xl" }, heading = {
|
|
45
|
+
className: "mb-6 text-center text-2xl font-bold text-foreground",
|
|
46
|
+
}, grid = { className: "grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-6" }, item = { className: "mb-4" }, questionButton = {
|
|
47
|
+
className: "shadow-md hover:shadow-lg border-[var(--btn-border)] focus-visible:ring-[var(--btn-ring)] bg-[var(--faq-btn-bg,var(--btn-bg))] text-[var(--faq-btn-fg,var(--btn-fg))] hover:bg-[var(--faq-btn-hover-bg,var(--btn-hover-bg))] hover:text-[var(--faq-btn-hover-fg,var(--btn-hover-fg))]",
|
|
48
|
+
}, questionText = { className: "" }, chevronIcon = { className: "transition-transform duration-200" }, answer = {
|
|
49
|
+
className: "bg-[var(--faq-answer-bg,var(--card-bg))] text-[var(--faq-answer-fg,var(--card-fg))] border-[var(--card-border)]",
|
|
50
|
+
}, answerText = { className: "leading-relaxed" }, enableMotion = true, }) {
|
|
51
|
+
const [openSet, setOpenSet] = useState(() => new Set(defaultOpenIndices));
|
|
52
|
+
const idPrefix = useMemo(() => sectionId || "faq", [sectionId]);
|
|
53
|
+
const onToggle = (idx) => {
|
|
54
|
+
setOpenSet((prev) => {
|
|
55
|
+
const next = new Set(prev);
|
|
56
|
+
if (next.has(idx))
|
|
57
|
+
next.delete(idx);
|
|
58
|
+
else {
|
|
59
|
+
if (!allowMultipleOpen)
|
|
60
|
+
next.clear();
|
|
61
|
+
next.add(idx);
|
|
62
|
+
}
|
|
63
|
+
return next;
|
|
64
|
+
});
|
|
65
|
+
};
|
|
66
|
+
return (<section id={sectionId} className={cn(section.className, className)} aria-label={ariaLabel}>
|
|
67
|
+
<div className={cn(container.className)}>
|
|
68
|
+
{faqSectionHeaderText && (<h2 className={cn(heading.className)}>{faqSectionHeaderText}</h2>)}
|
|
69
|
+
<div className={cn(grid.className)}>
|
|
70
|
+
{faqData.map((faq, index) => {
|
|
71
|
+
const transitionCls = enableMotion
|
|
72
|
+
? "transition-all duration-300 ease-in-out"
|
|
73
|
+
: "transition-none";
|
|
74
|
+
const isOpen = openSet.has(index);
|
|
75
|
+
return (<div key={`${idPrefix}-item-${index}`} className={cn("w-full", item.className)}>
|
|
76
|
+
<button id={`${idPrefix}-trigger-${index}`} aria-controls={`${idPrefix}-panel-${index}`} aria-expanded={isOpen} onClick={() => onToggle(index)} className={cn("flex w-full items-center justify-between rounded-md p-4 text-left focus:outline-none",
|
|
77
|
+
// preset-first ring/border
|
|
78
|
+
"border-[var(--btn-border)] focus-visible:ring-2 focus-visible:ring-[var(--btn-ring)] focus-visible:ring-offset-2", questionButton.className)}>
|
|
79
|
+
<span className={cn("flex-1 font-medium select-none", questionText.className)}>
|
|
80
|
+
{faq.question}
|
|
81
|
+
</span>
|
|
82
|
+
<span className={cn("ml-3 flex-shrink-0", chevronIcon.className)}>
|
|
83
|
+
{isOpen
|
|
84
|
+
? (openIcon !== null && openIcon !== void 0 ? openIcon : <ChevronUp className="h-5 w-5"/>)
|
|
85
|
+
: (closedIcon !== null && closedIcon !== void 0 ? closedIcon : <ChevronDown className="h-5 w-5"/>)}
|
|
86
|
+
</span>
|
|
87
|
+
</button>
|
|
88
|
+
<div id={`${idPrefix}-panel-${index}`} role="region" aria-labelledby={`${idPrefix}-trigger-${index}`} className={cn("border-border overflow-hidden rounded-md border", isOpen ? "max-h-96 opacity-100" : "max-h-0 opacity-0", transitionCls, answer.className)}>
|
|
89
|
+
<div className={cn("p-4", answerText.className)}>
|
|
90
|
+
{faq.answer}
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
</div>);
|
|
94
|
+
})}
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
</section>);
|
|
98
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { Transition } from "motion";
|
|
3
|
+
/**
|
|
4
|
+
* Data used to render a FeatureCard within the Features grid.
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface FeatureCardData {
|
|
8
|
+
imageSrc: string;
|
|
9
|
+
imageAlt: string;
|
|
10
|
+
headingText: string;
|
|
11
|
+
subheadingText: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Props for the Features section component.
|
|
15
|
+
*
|
|
16
|
+
* @remarks
|
|
17
|
+
* - Styling: slot-style className overrides are merged after defaults via cn().
|
|
18
|
+
* - Motion: entrance animations respect enableMotion; prefers-reduced-motion
|
|
19
|
+
* disables transforms and transitions where possible.
|
|
20
|
+
*
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface FeaturesProps {
|
|
24
|
+
/**
|
|
25
|
+
* Optional id to attach to the root section element.
|
|
26
|
+
* @defaultValue "features"
|
|
27
|
+
*/
|
|
28
|
+
id?: string;
|
|
29
|
+
/** Main section heading text */
|
|
30
|
+
sectionHeading?: string;
|
|
31
|
+
/** Subheading text displayed below the main heading */
|
|
32
|
+
sectionSubheading?: string;
|
|
33
|
+
/** Array of feature card data objects */
|
|
34
|
+
featuresData?: FeatureCardData[];
|
|
35
|
+
/** Optional top-level class to override the section root */
|
|
36
|
+
className?: string;
|
|
37
|
+
/** Styling configuration objects (slots) */
|
|
38
|
+
section?: {
|
|
39
|
+
className?: string;
|
|
40
|
+
};
|
|
41
|
+
container?: {
|
|
42
|
+
className?: string;
|
|
43
|
+
};
|
|
44
|
+
header?: {
|
|
45
|
+
className?: string;
|
|
46
|
+
};
|
|
47
|
+
heading?: {
|
|
48
|
+
className?: string;
|
|
49
|
+
};
|
|
50
|
+
subheading?: {
|
|
51
|
+
className?: string;
|
|
52
|
+
};
|
|
53
|
+
grid?: {
|
|
54
|
+
className?: string;
|
|
55
|
+
};
|
|
56
|
+
/** Wrapper around each FeatureCard (the animated container) */
|
|
57
|
+
cardWrapper?: {
|
|
58
|
+
className?: string;
|
|
59
|
+
};
|
|
60
|
+
/** Styles passed down to FeatureCard slots */
|
|
61
|
+
card?: {
|
|
62
|
+
className?: string;
|
|
63
|
+
};
|
|
64
|
+
image?: {
|
|
65
|
+
className?: string;
|
|
66
|
+
};
|
|
67
|
+
cardHeading?: {
|
|
68
|
+
className?: string;
|
|
69
|
+
};
|
|
70
|
+
cardSubheading?: {
|
|
71
|
+
className?: string;
|
|
72
|
+
};
|
|
73
|
+
/** When false, disables entrance animations and hover transitions. */
|
|
74
|
+
enableMotion?: boolean;
|
|
75
|
+
/** Motion configuration for the feature items */
|
|
76
|
+
motionConfig?: {
|
|
77
|
+
initial?: {
|
|
78
|
+
opacity?: number;
|
|
79
|
+
y?: number;
|
|
80
|
+
};
|
|
81
|
+
whileInView?: {
|
|
82
|
+
opacity?: number;
|
|
83
|
+
y?: number;
|
|
84
|
+
};
|
|
85
|
+
viewport?: {
|
|
86
|
+
once?: boolean;
|
|
87
|
+
amount?: number;
|
|
88
|
+
};
|
|
89
|
+
transition?: Transition;
|
|
90
|
+
};
|
|
91
|
+
/** ARIA label for the features section */
|
|
92
|
+
ariaLabel?: string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Responsive Features section that renders a heading, optional subheading,
|
|
96
|
+
* and a grid of FeatureCard items with configurable entrance animations.
|
|
97
|
+
*
|
|
98
|
+
* @remarks
|
|
99
|
+
* - Styling: slot-style className overrides are merged after defaults via cn().
|
|
100
|
+
* - Motion: Controlled by enableMotion and motionConfig; animations are reduced
|
|
101
|
+
* or disabled when users prefer reduced motion.
|
|
102
|
+
* - Accessibility: Uses a semantic <section> with an aria-label.
|
|
103
|
+
*
|
|
104
|
+
* @example
|
|
105
|
+
* <Features
|
|
106
|
+
* sectionHeading="Key Features"
|
|
107
|
+
* featuresData={[{ imageSrc: "/a.png", imageAlt: "", headingText: "Fast", subheadingText: "Blazing" }]}
|
|
108
|
+
* />
|
|
109
|
+
*/
|
|
110
|
+
export declare function Features({ id, sectionHeading, sectionSubheading, featuresData, className, section, container, header, heading, subheading, grid, cardWrapper, card, image, cardHeading, cardSubheading, enableMotion, motionConfig, ariaLabel, }: FeaturesProps): React.JSX.Element;
|
|
111
|
+
//# sourceMappingURL=Features.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Features.d.ts","sourceRoot":"","sources":["../../src/components/Features.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAIzC;;;GAGG;AACH,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;CACxB;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,gCAAgC;IAChC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uDAAuD;IACvD,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B,yCAAyC;IACzC,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC;IAEjC,4DAA4D;IAC5D,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,4CAA4C;IAC5C,OAAO,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACjC,SAAS,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACnC,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAChC,OAAO,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACjC,UAAU,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACpC,IAAI,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,+DAA+D;IAC/D,WAAW,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrC,8CAA8C;IAC9C,IAAI,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,KAAK,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/B,WAAW,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrC,cAAc,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAExC,sEAAsE;IACtE,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB,iDAAiD;IACjD,YAAY,CAAC,EAAE;QACb,OAAO,CAAC,EAAE;YAAE,OAAO,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;QAC3C,WAAW,CAAC,EAAE;YAAE,OAAO,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;QAC/C,QAAQ,CAAC,EAAE;YAAE,IAAI,CAAC,EAAE,OAAO,CAAC;YAAC,MAAM,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;QAC/C,UAAU,CAAC,EAAE,UAAU,CAAC;KACzB,CAAC;IAEF,0CAA0C;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAiCD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,QAAQ,CAAC,EACvB,EAAe,EACf,cAA+B,EAC/B,iBAA0E,EAC1E,YAAkC,EAElC,SAAS,EAET,OAAgE,EAChE,SAAmE,EACnE,MAAoD,EACpD,OAGC,EACD,UAGC,EACD,IAGC,EACD,WAEC,EACD,IAGC,EACD,KAGC,EACD,WAGC,EACD,cAEC,EAED,YAAmB,EACnB,YAWC,EACD,SAA8B,GAC/B,EAAE,aAAa,qBAwFf"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { motion } from "motion/react";
|
|
4
|
+
import { cn } from "@nextworks/blocks-core";
|
|
5
|
+
import { FeatureCard } from "@nextworks/blocks-core";
|
|
6
|
+
const defaultFeaturesData = [
|
|
7
|
+
{
|
|
8
|
+
imageSrc: "/feature_1.png",
|
|
9
|
+
imageAlt: "Advanced Analytics Dashboard",
|
|
10
|
+
headingText: "Advanced Analytics",
|
|
11
|
+
subheadingText: "Get deep insights into your business performance with our comprehensive analytics dashboard that tracks key metrics and provides actionable recommendations.",
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
imageSrc: "/feature_2.png",
|
|
15
|
+
imageAlt: "Real-time Collaboration Tools",
|
|
16
|
+
headingText: "Real-time Collaboration",
|
|
17
|
+
subheadingText: "Work seamlessly with your team using our real-time collaboration tools that keep everyone in sync and boost productivity across all projects.",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
imageSrc: "/feature_3.png",
|
|
21
|
+
imageAlt: "Secure Data Management",
|
|
22
|
+
headingText: "Secure Data Management",
|
|
23
|
+
subheadingText: "Protect your sensitive information with enterprise-grade security features including encryption, access controls, and compliance monitoring.",
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
imageSrc: "/feature_4.png",
|
|
27
|
+
imageAlt: "Mobile-First Design",
|
|
28
|
+
headingText: "Mobile-First Design",
|
|
29
|
+
subheadingText: "Access your data and manage your workflow from anywhere with our responsive, mobile-optimized interface that works perfectly on all devices.",
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
/**
|
|
33
|
+
* Responsive Features section that renders a heading, optional subheading,
|
|
34
|
+
* and a grid of FeatureCard items with configurable entrance animations.
|
|
35
|
+
*
|
|
36
|
+
* @remarks
|
|
37
|
+
* - Styling: slot-style className overrides are merged after defaults via cn().
|
|
38
|
+
* - Motion: Controlled by enableMotion and motionConfig; animations are reduced
|
|
39
|
+
* or disabled when users prefer reduced motion.
|
|
40
|
+
* - Accessibility: Uses a semantic <section> with an aria-label.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* <Features
|
|
44
|
+
* sectionHeading="Key Features"
|
|
45
|
+
* featuresData={[{ imageSrc: "/a.png", imageAlt: "", headingText: "Fast", subheadingText: "Blazing" }]}
|
|
46
|
+
* />
|
|
47
|
+
*/
|
|
48
|
+
export function Features({ id = "features", sectionHeading = "Key Features", sectionSubheading = "Discover what makes our platform unique and powerful", featuresData = defaultFeaturesData, className, section = { className: "py-16 md:py-20 lg:py-24 bg-background" }, container = { className: "max-w-7xl mx-auto px-4 md:px-6 lg:px-8" }, header = { className: "text-center mb-12 md:mb-16" }, heading = {
|
|
49
|
+
className: "text-3xl md:text-4xl lg:text-5xl font-bold text-foreground mb-4",
|
|
50
|
+
}, subheading = {
|
|
51
|
+
className: "text-lg md:text-xl text-muted-foreground max-w-3xl mx-auto leading-relaxed",
|
|
52
|
+
}, grid = {
|
|
53
|
+
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-4 gap-6 md:gap-8",
|
|
54
|
+
}, cardWrapper = {
|
|
55
|
+
className: "motion-reduce:transform-none motion-reduce:transition-none",
|
|
56
|
+
}, card = {
|
|
57
|
+
className: "h-full bg-card border border-border rounded-lg shadow-md transition-all duration-200 hover:-translate-y-1 hover:shadow-lg overflow-hidden motion-reduce:transition-none motion-reduce:transform-none",
|
|
58
|
+
}, image = {
|
|
59
|
+
className: "w-full h-48 md:h-56 object-cover transition-none hover:!scale-100 group-hover:!scale-100 [transform:none]",
|
|
60
|
+
}, cardHeading = {
|
|
61
|
+
className: "text-xl md:text-2xl font-semibold text-card-foreground mb-3 leading-tight",
|
|
62
|
+
}, cardSubheading = {
|
|
63
|
+
className: "text-sm md:text-base text-muted-foreground leading-relaxed",
|
|
64
|
+
}, enableMotion = true, motionConfig = {
|
|
65
|
+
initial: { opacity: 0, y: 12 },
|
|
66
|
+
whileInView: { opacity: 1, y: 0 },
|
|
67
|
+
viewport: { once: true, amount: 0.2 },
|
|
68
|
+
transition: {
|
|
69
|
+
type: "tween",
|
|
70
|
+
stiffness: 0,
|
|
71
|
+
damping: 50,
|
|
72
|
+
mass: 1,
|
|
73
|
+
delay: 0.15,
|
|
74
|
+
},
|
|
75
|
+
}, ariaLabel = "Features section", }) {
|
|
76
|
+
return (_jsx("section", { id: id, className: cn(section.className, className), "aria-label": ariaLabel, children: _jsxs("div", { className: cn(container.className), children: [_jsxs("div", { className: cn(header.className), children: [_jsx("h2", { className: cn(heading.className), children: sectionHeading }), sectionSubheading && (_jsx("p", { className: cn(subheading.className), children: sectionSubheading }))] }), _jsx("div", { className: cn(grid.className), children: featuresData.map((feature, index) => {
|
|
77
|
+
var _a, _b, _c;
|
|
78
|
+
const mConfig = enableMotion
|
|
79
|
+
? motionConfig
|
|
80
|
+
: {
|
|
81
|
+
initial: { opacity: 1, y: 0 },
|
|
82
|
+
whileInView: { opacity: 1, y: 0 },
|
|
83
|
+
viewport: { once: true, amount: 0 },
|
|
84
|
+
transition: {
|
|
85
|
+
type: "tween",
|
|
86
|
+
duration: 0,
|
|
87
|
+
},
|
|
88
|
+
};
|
|
89
|
+
// Ensure we always spread a defined object into transition
|
|
90
|
+
const baseTransition = ((_a = mConfig.transition) !== null && _a !== void 0 ? _a : {
|
|
91
|
+
type: "tween",
|
|
92
|
+
duration: 0,
|
|
93
|
+
});
|
|
94
|
+
const noMotionCard = "transition-none hover:!translate-y-0 hover:shadow-none motion-reduce:transition-none motion-reduce:transform-none";
|
|
95
|
+
const noMotionImage = "transition-none hover:!scale-100 transform-none motion-reduce:transform-none group-hover:!scale-100";
|
|
96
|
+
return (_jsx(motion.div, { initial: mConfig.initial, whileInView: mConfig.whileInView, viewport: mConfig.viewport, transition: Object.assign(Object.assign({}, baseTransition), {
|
|
97
|
+
// Stagger based on index while preserving provided delay if any
|
|
98
|
+
delay: ((_c = (_b = mConfig.transition) === null || _b === void 0 ? void 0 : _b.delay) !== null && _c !== void 0 ? _c : 0.15) +
|
|
99
|
+
index * (enableMotion ? 0.06 : 0) }), className: cn(cardWrapper.className), children: _jsx(FeatureCard, { cardImageSrc: feature.imageSrc, cardImageAlt: feature.imageAlt, cardHeadingText: feature.headingText, cardSubheadingText: feature.subheadingText, card: {
|
|
100
|
+
className: cn(card.className, !enableMotion && noMotionCard),
|
|
101
|
+
}, image: {
|
|
102
|
+
className: cn(image.className, !enableMotion && noMotionImage),
|
|
103
|
+
},
|
|
104
|
+
// image={{
|
|
105
|
+
// className: cn(image.className),
|
|
106
|
+
// }}
|
|
107
|
+
heading: { className: cn(cardHeading.className) }, subheading: { className: cn(cardSubheading.className) }, className: cn("h-full") }) }, index));
|
|
108
|
+
}) })] }) }));
|
|
109
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { motion } from "motion/react";
|
|
4
|
+
import { cn } from "@nextworks/blocks-core";
|
|
5
|
+
import { FeatureCard } from "@nextworks/blocks-core";
|
|
6
|
+
const defaultFeaturesData = [
|
|
7
|
+
{
|
|
8
|
+
imageSrc: "/feature_1.png",
|
|
9
|
+
imageAlt: "Advanced Analytics Dashboard",
|
|
10
|
+
headingText: "Advanced Analytics",
|
|
11
|
+
subheadingText: "Get deep insights into your business performance with our comprehensive analytics dashboard that tracks key metrics and provides actionable recommendations.",
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
imageSrc: "/feature_2.png",
|
|
15
|
+
imageAlt: "Real-time Collaboration Tools",
|
|
16
|
+
headingText: "Real-time Collaboration",
|
|
17
|
+
subheadingText: "Work seamlessly with your team using our real-time collaboration tools that keep everyone in sync and boost productivity across all projects.",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
imageSrc: "/feature_3.png",
|
|
21
|
+
imageAlt: "Secure Data Management",
|
|
22
|
+
headingText: "Secure Data Management",
|
|
23
|
+
subheadingText: "Protect your sensitive information with enterprise-grade security features including encryption, access controls, and compliance monitoring.",
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
imageSrc: "/feature_4.png",
|
|
27
|
+
imageAlt: "Mobile-First Design",
|
|
28
|
+
headingText: "Mobile-First Design",
|
|
29
|
+
subheadingText: "Access your data and manage your workflow from anywhere with our responsive, mobile-optimized interface that works perfectly on all devices.",
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
/**
|
|
33
|
+
* Responsive Features section that renders a heading, optional subheading,
|
|
34
|
+
* and a grid of FeatureCard items with configurable entrance animations.
|
|
35
|
+
*
|
|
36
|
+
* @remarks
|
|
37
|
+
* - Styling: slot-style className overrides are merged after defaults via cn().
|
|
38
|
+
* - Motion: Controlled by enableMotion and motionConfig; animations are reduced
|
|
39
|
+
* or disabled when users prefer reduced motion.
|
|
40
|
+
* - Accessibility: Uses a semantic <section> with an aria-label.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* <Features
|
|
44
|
+
* sectionHeading="Key Features"
|
|
45
|
+
* featuresData={[{ imageSrc: "/a.png", imageAlt: "", headingText: "Fast", subheadingText: "Blazing" }]}
|
|
46
|
+
* />
|
|
47
|
+
*/
|
|
48
|
+
export function Features({ id = "features", sectionHeading = "Key Features", sectionSubheading = "Discover what makes our platform unique and powerful", featuresData = defaultFeaturesData, className, section = { className: "py-16 md:py-20 lg:py-24 bg-background" }, container = { className: "max-w-7xl mx-auto px-4 md:px-6 lg:px-8" }, header = { className: "text-center mb-12 md:mb-16" }, heading = {
|
|
49
|
+
className: "text-3xl md:text-4xl lg:text-5xl font-bold text-foreground mb-4",
|
|
50
|
+
}, subheading = {
|
|
51
|
+
className: "text-lg md:text-xl text-muted-foreground max-w-3xl mx-auto leading-relaxed",
|
|
52
|
+
}, grid = {
|
|
53
|
+
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-4 gap-6 md:gap-8",
|
|
54
|
+
}, cardWrapper = {
|
|
55
|
+
className: "motion-reduce:transform-none motion-reduce:transition-none",
|
|
56
|
+
}, card = {
|
|
57
|
+
className: "h-full bg-card border border-border rounded-lg shadow-md transition-all duration-200 hover:-translate-y-1 hover:shadow-lg overflow-hidden motion-reduce:transition-none motion-reduce:transform-none",
|
|
58
|
+
}, image = {
|
|
59
|
+
className: "w-full h-48 md:h-56 object-cover transition-none hover:!scale-100 group-hover:!scale-100 [transform:none]",
|
|
60
|
+
}, cardHeading = {
|
|
61
|
+
className: "text-xl md:text-2xl font-semibold text-card-foreground mb-3 leading-tight",
|
|
62
|
+
}, cardSubheading = {
|
|
63
|
+
className: "text-sm md:text-base text-muted-foreground leading-relaxed",
|
|
64
|
+
}, enableMotion = true, motionConfig = {
|
|
65
|
+
initial: { opacity: 0, y: 12 },
|
|
66
|
+
whileInView: { opacity: 1, y: 0 },
|
|
67
|
+
viewport: { once: true, amount: 0.2 },
|
|
68
|
+
transition: {
|
|
69
|
+
type: "tween",
|
|
70
|
+
stiffness: 0,
|
|
71
|
+
damping: 50,
|
|
72
|
+
mass: 1,
|
|
73
|
+
delay: 0.15,
|
|
74
|
+
},
|
|
75
|
+
}, ariaLabel = "Features section", }) {
|
|
76
|
+
return (<section id={id} className={cn(section.className, className)} aria-label={ariaLabel}>
|
|
77
|
+
<div className={cn(container.className)}>
|
|
78
|
+
<div className={cn(header.className)}>
|
|
79
|
+
<h2 className={cn(heading.className)}>{sectionHeading}</h2>
|
|
80
|
+
{sectionSubheading && (<p className={cn(subheading.className)}>{sectionSubheading}</p>)}
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
<div className={cn(grid.className)}>
|
|
84
|
+
{featuresData.map((feature, index) => {
|
|
85
|
+
var _a, _b, _c;
|
|
86
|
+
const mConfig = enableMotion
|
|
87
|
+
? motionConfig
|
|
88
|
+
: {
|
|
89
|
+
initial: { opacity: 1, y: 0 },
|
|
90
|
+
whileInView: { opacity: 1, y: 0 },
|
|
91
|
+
viewport: { once: true, amount: 0 },
|
|
92
|
+
transition: {
|
|
93
|
+
type: "tween",
|
|
94
|
+
duration: 0,
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
// Ensure we always spread a defined object into transition
|
|
98
|
+
const baseTransition = ((_a = mConfig.transition) !== null && _a !== void 0 ? _a : {
|
|
99
|
+
type: "tween",
|
|
100
|
+
duration: 0,
|
|
101
|
+
});
|
|
102
|
+
const noMotionCard = "transition-none hover:!translate-y-0 hover:shadow-none motion-reduce:transition-none motion-reduce:transform-none";
|
|
103
|
+
const noMotionImage = "transition-none hover:!scale-100 transform-none motion-reduce:transform-none group-hover:!scale-100";
|
|
104
|
+
return (<motion.div key={index} initial={mConfig.initial} whileInView={mConfig.whileInView} viewport={mConfig.viewport} transition={Object.assign(Object.assign({}, baseTransition), {
|
|
105
|
+
// Stagger based on index while preserving provided delay if any
|
|
106
|
+
delay: ((_c = (_b = mConfig.transition) === null || _b === void 0 ? void 0 : _b.delay) !== null && _c !== void 0 ? _c : 0.15) +
|
|
107
|
+
index * (enableMotion ? 0.06 : 0) })} className={cn(cardWrapper.className)}>
|
|
108
|
+
<FeatureCard cardImageSrc={feature.imageSrc} cardImageAlt={feature.imageAlt} cardHeadingText={feature.headingText} cardSubheadingText={feature.subheadingText} card={{
|
|
109
|
+
className: cn(card.className, !enableMotion && noMotionCard),
|
|
110
|
+
}} image={{
|
|
111
|
+
className: cn(image.className, !enableMotion && noMotionImage),
|
|
112
|
+
}}
|
|
113
|
+
// image={{
|
|
114
|
+
// className: cn(image.className),
|
|
115
|
+
// }}
|
|
116
|
+
heading={{ className: cn(cardHeading.className) }} subheading={{ className: cn(cardSubheading.className) }} className={cn("h-full")}/>
|
|
117
|
+
</motion.div>);
|
|
118
|
+
})}
|
|
119
|
+
</div>
|
|
120
|
+
</div>
|
|
121
|
+
</section>);
|
|
122
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Navigation link item interface representing a single link in the footer.
|
|
4
|
+
*/
|
|
5
|
+
export interface NavLinkItem {
|
|
6
|
+
/** Display name of the link */
|
|
7
|
+
name: string;
|
|
8
|
+
/** URL or anchor for the navigation link */
|
|
9
|
+
href: string;
|
|
10
|
+
/** Whether the link should open in a new tab */
|
|
11
|
+
external?: boolean;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Grouping for navigation link items under a section heading.
|
|
15
|
+
*/
|
|
16
|
+
export interface NavLinkGroup {
|
|
17
|
+
/** Section heading/title */
|
|
18
|
+
heading: string;
|
|
19
|
+
/** Collection of links under this section */
|
|
20
|
+
links: NavLinkItem[];
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Social media link interface for footer social icons.
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface SocialLink {
|
|
27
|
+
/** Name of the social media platform */
|
|
28
|
+
name: string;
|
|
29
|
+
/** SVG icon component (e.g., Lucide). Should respect currentColor. */
|
|
30
|
+
icon: React.ComponentType<React.SVGProps<SVGSVGElement>>;
|
|
31
|
+
/** URL to the social profile */
|
|
32
|
+
url: string;
|
|
33
|
+
/** Optional aria-label for accessibility */
|
|
34
|
+
label?: string;
|
|
35
|
+
/** Whether the link should open in a new tab */
|
|
36
|
+
external?: boolean;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Props for the Footer component.
|
|
40
|
+
*
|
|
41
|
+
* @remarks
|
|
42
|
+
* Exposes slot-style className overrides for layout and typography. External
|
|
43
|
+
* links automatically receive target and rel attributes for security.
|
|
44
|
+
*
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export interface FooterProps {
|
|
48
|
+
/** Optional id to attach to the root footer element */
|
|
49
|
+
id?: string;
|
|
50
|
+
/** Brand name or logo text displayed in the footer */
|
|
51
|
+
footerBrandName?: string;
|
|
52
|
+
/** Optional custom brand node (e.g., logo). Rendered left of brand text */
|
|
53
|
+
brandNode?: React.ReactNode;
|
|
54
|
+
/** Optional link for the brand (wraps brand text) */
|
|
55
|
+
brandHref?: string;
|
|
56
|
+
/** Navigation link groups shown in the footer */
|
|
57
|
+
footerNavLinks?: NavLinkGroup[];
|
|
58
|
+
/** Social media links and icons shown in the footer */
|
|
59
|
+
footerSocialLinks?: SocialLink[];
|
|
60
|
+
/** Optional top-level class to override the footer root */
|
|
61
|
+
className?: string;
|
|
62
|
+
/** Styling configuration objects (slot-based API) */
|
|
63
|
+
section?: {
|
|
64
|
+
className?: string;
|
|
65
|
+
};
|
|
66
|
+
container?: {
|
|
67
|
+
className?: string;
|
|
68
|
+
};
|
|
69
|
+
brand?: {
|
|
70
|
+
className?: string;
|
|
71
|
+
};
|
|
72
|
+
brandWrapper?: {
|
|
73
|
+
className?: string;
|
|
74
|
+
};
|
|
75
|
+
navSection?: {
|
|
76
|
+
className?: string;
|
|
77
|
+
};
|
|
78
|
+
navGroup?: {
|
|
79
|
+
className?: string;
|
|
80
|
+
};
|
|
81
|
+
navHeading?: {
|
|
82
|
+
className?: string;
|
|
83
|
+
};
|
|
84
|
+
navLink?: {
|
|
85
|
+
className?: string;
|
|
86
|
+
};
|
|
87
|
+
linksList?: {
|
|
88
|
+
className?: string;
|
|
89
|
+
};
|
|
90
|
+
socialSection?: {
|
|
91
|
+
className?: string;
|
|
92
|
+
};
|
|
93
|
+
socialLink?: {
|
|
94
|
+
className?: string;
|
|
95
|
+
};
|
|
96
|
+
socialIcon?: {
|
|
97
|
+
className?: string;
|
|
98
|
+
};
|
|
99
|
+
copyright?: {
|
|
100
|
+
className?: string;
|
|
101
|
+
};
|
|
102
|
+
/** Optional overrides for copyright */
|
|
103
|
+
copyrightYear?: number;
|
|
104
|
+
copyrightOverride?: React.ReactNode;
|
|
105
|
+
/** ARIA label for the footer section */
|
|
106
|
+
ariaLabel?: string;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Site footer with brand, grouped navigation links, social icons, and copyright.
|
|
110
|
+
*
|
|
111
|
+
* @remarks
|
|
112
|
+
* - Styling: slot-style className overrides are merged after defaults via cn().
|
|
113
|
+
* - Accessibility: renders a semantic <footer> with aria-label and clear link
|
|
114
|
+
* names; external links open in a new tab with rel security attributes.
|
|
115
|
+
*
|
|
116
|
+
* @example
|
|
117
|
+
* <Footer footerBrandName="Acme" />
|
|
118
|
+
*/
|
|
119
|
+
export declare function Footer({ id, footerBrandName, brandNode, brandHref, footerNavLinks, footerSocialLinks, className, section, container, brand, brandWrapper, navSection, navGroup, navHeading, navLink, linksList, socialSection, socialLink, socialIcon, copyright, copyrightYear, copyrightOverride, ariaLabel, }: FooterProps): React.JSX.Element;
|
|
120
|
+
//# sourceMappingURL=Footer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../src/components/Footer.tsx"],"names":[],"mappings":"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"}
|