Skip to content

Commit 91c772b

Browse files
committed
feat: add sections
1 parent 8d39f90 commit 91c772b

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

src/components/Cards/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ export { FeatureCard } from './FeatureCard'
22
export { CustomerCard } from './CustomerCard'
33
export { EventCard } from './EventCard'
44
export { ProjectCard } from './ProjectCard'
5-
export { Image } from './Image'
5+
export { Image } from './Image'
6+
export * from './ServiceCard'
7+
export * from './PricingCard'

src/components/Pages/Website.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default function WebsiteSection({ ...args }) {
9595
{args.hero && args.hero.type === 'mediumImpact' && <MediumImpactHero {...args.hero} />}
9696
{args.hero && args.hero.type === 'highImpact' && <HighImpactHero {...args.hero} />}
9797
{args.hero && args.hero.type === 'postHero' && <PostHero {...args.hero} />}
98-
{args.hero && args.hero.type === 'sectionHero' && <SectionHero {...args.hero} />}
98+
{/* {args.hero && args.hero.type === 'sectionHero' && <SectionHero {...args.hero} />} */}
9999

100100
{/* <div className="relative bg-brand-one pb-12 pt-10">
101101
{args.heroBackgroundImage && (

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77

88
export * from "./components";
99
export * from "./hooks";
10+
export * from "./sections";

src/sections/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './ServiceSection';
2+
export * from './PricingSection';

0 commit comments

Comments
 (0)