feat: add footer section

This commit is contained in:
2025-05-30 14:57:30 +03:00
parent daff59e8d7
commit b51d4f4f20
14 changed files with 256 additions and 7 deletions

View File

@@ -2,8 +2,8 @@ import Main from './main/main';
import Offer from './offer/offer';
import Result from './result/result';
import License from './license/license';
// import Contacts from './contacts/contacts';
// import Footer from './footer/footer';
import Contacts from './contacts/contacts';
import Footer from './footer/footer';
export default function HomePage() {
return (
@@ -12,8 +12,8 @@ export default function HomePage() {
<Offer />
<Result />
<License />
{/*<Contacts />*/}
{/*<Footer />*/}
<Contacts />
<Footer />
</>
);
}