We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbf08f7 commit e43d8efCopy full SHA for e43d8ef
2 files changed
app/speak/components/speak.tsx
@@ -10,7 +10,7 @@ const handleRedirect = (url: string) => {
10
}
11
};
12
13
-const HeroSection: React.FC = () => {
+const SpeakDetails: React.FC = () => {
14
return (
15
<section className="py-16">
16
<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 = () => {
202
);
203
204
205
-export default HeroSection;
+export default SpeakDetails;
app/speak/page.tsx
@@ -1,9 +1,9 @@
1
-import HeroSection from './components/speak';
+import SpeakDetails from './components/speak';
2
3
export default function SpeakPage() {
4
5
<main>
6
- <HeroSection />
+ <SpeakDetails />
7
</main>
8
9
0 commit comments