Skip to content

Commit 8720152

Browse files
committed
restructure components/ContactUs
1 parent a9c8a0d commit 8720152

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

components/ContactUs/ContactUsCards.js renamed to components/ContactUs/ContactUsCards/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ContactCardsColumns } from '../containers/CardColumns/ContactCardsColumns';
2-
import RevealContentContainer from '../containers/RevealContentContainer';
1+
import { ContactCardsColumns } from '../../containers/CardColumns/ContactCardsColumns';
2+
import RevealContentContainer from '../../containers/RevealContentContainer';
33
import styles from './ContactUsCards.module.scss';
44

55
const cards = [
@@ -30,7 +30,7 @@ const cards = [
3030
},
3131
];
3232

33-
export default function ContactUsCards() {
33+
export default function Index() {
3434
return (
3535
<article className={styles.contactCards}>
3636
<RevealContentContainer>

pages/contact.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from 'react';
22
import ContactUsFormSubscribe from '@/components/ContactUs';
3-
import ContactUsCards from '@/components/ContactUs/ContactUsCards';
3+
import Index from '@/components/ContactUs/ContactUsCards';
44
import S from '@/styles/pages/contactStyles';
55

66
export default function ContactUs() {
@@ -23,7 +23,7 @@ export default function ContactUs() {
2323
</S.ResponseMessage>
2424
</S.FormAndDecorations>
2525
</S.ContactUsContainer>
26-
<ContactUsCards />
26+
<Index />
2727
</>
2828
);
2929
}

0 commit comments

Comments
 (0)