Skip to content

Commit

Permalink
move import
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbarnum4 committed Jun 11, 2024
1 parent 5f8fa68 commit 84b18f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/contact/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { GetStaticProps, NextPage } from 'next';
import dynamic from 'next/dynamic';
import styled from 'styled-components';

import { FiMapPin, FiPhone } from 'react-icons/fi';

import { Section } from '@this/components/layout';
import { IContact } from '@this/data/types/contact';

Expand All @@ -10,7 +12,7 @@ import Main from '@this/components/layout/Main';
import { getStaticAsset } from '@this/pages-api/static/[asset]';
import { BgImg } from '@this/src/components/Elements';
import Map from '@this/src/components/Elements/Map';
import { FiMapPin, FiPhone } from 'react-icons/fi';

const ContactForm = dynamic(() => import('@this/src/Forms/Form.Contact'));

const Contact: NextPage<IContact> = ({ address, city, state, zip, phone, gMapUrl }) => {
Expand Down

0 comments on commit 84b18f0

Please sign in to comment.