File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import getMetadata from '@/utils/get-metadata';
22
33import Benefits from '@/components/pages/home/benefits' ;
44import Features from '@/components/pages/home/features/features' ;
5- import HeroV1 from '@/components/pages/home/hero-v1 ' ;
5+ import Hero from '@/components/pages/home/hero' ;
66import Demo from '@/components/pages/home/demo' ;
77import Logos from '@/components/pages/home/logos' ;
88import PromoSQLEditor from '@/components/pages/home/promo-sql-editor' ;
@@ -32,7 +32,7 @@ export default function Page() {
3232
3333 return (
3434 < >
35- < HeroV1 latestVersion = { latestVersion } />
35+ < Hero latestVersion = { latestVersion } />
3636 < Logos />
3737 < Demo />
3838 < PromoAutomationChanges />
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import SmallArrowIcon from '@/svgs/small-arrow.inline.svg';
1212import DBScheme from './db-scheme' ;
1313import PromoCards from '../promo-cards' ;
1414
15- const HeroV1 = ( { latestVersion } : { latestVersion : { number : string ; slug : string } | null } ) => {
15+ const Hero = ( { latestVersion } : { latestVersion : { number : string ; slug : string } | null } ) => {
1616 return (
1717 < div className = { clsx ( 'container mt-16 flex w-full flex-col md:mt-8 sm:mt-4' ) } >
1818 < section className = "flex w-full flex-col items-center justify-center" >
@@ -56,4 +56,4 @@ const HeroV1 = ({ latestVersion }: { latestVersion: { number: string; slug: stri
5656 ) ;
5757} ;
5858
59- export default HeroV1 ;
59+ export default Hero ;
Original file line number Diff line number Diff line change 1+ import Hero from './hero' ;
2+
3+ export default Hero ;
You can’t perform that action at this time.
0 commit comments