Skip to content

Commit e43d8ef

Browse files
committed
fix: proper components name
1 parent bbf08f7 commit e43d8ef

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/speak/components/speak.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const handleRedirect = (url: string) => {
1010
}
1111
};
1212

13-
const HeroSection: React.FC = () => {
13+
const SpeakDetails: React.FC = () => {
1414
return (
1515
<section className="py-16">
1616
<div className="flex-column max-w-7xl mx-auto pl-8 md:pl-12 lg:pl-16">
@@ -202,4 +202,4 @@ const HeroSection: React.FC = () => {
202202
);
203203
};
204204

205-
export default HeroSection;
205+
export default SpeakDetails;

app/speak/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import HeroSection from './components/speak';
1+
import SpeakDetails from './components/speak';
22

33
export default function SpeakPage() {
44
return (
55
<main>
6-
<HeroSection />
6+
<SpeakDetails />
77
</main>
88
);
99
}

0 commit comments

Comments
 (0)