feat: add offer section

This commit is contained in:
2025-05-29 15:18:51 +03:00
parent c4cc79637b
commit 6bd23f4d2d
31 changed files with 358 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
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';
export default function HomePage() {
return (
<>
<Main />
<Offer />
{/*<Result />*/}
{/*<License />*/}
{/*<Contacts />*/}
{/*<Footer />*/}
</>
);
}