fix: add responsive to main, offer, result sections

This commit is contained in:
2025-06-05 16:24:45 +03:00
parent 7d0fb5638e
commit 78f98a2a8c
8 changed files with 692 additions and 138 deletions

View File

@@ -1,9 +1,9 @@
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 License from './license/license';
// import Contacts from './contacts/contacts';
// import Footer from './footer/footer';
export default function HomePage() {
return (
@@ -11,9 +11,9 @@ export default function HomePage() {
<Main />
<Offer />
<Result />
<License />
<Contacts />
<Footer />
{/*<License />*/}
{/*<Contacts />*/}
{/*<Footer />*/}
</>
);
}