Skip to content

Commit

Permalink
use self-closing tags
Browse files Browse the repository at this point in the history
  • Loading branch information
o-tsaruk committed Oct 5, 2024
1 parent b0bfe72 commit d1123e5
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 51 deletions.
16 changes: 10 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pages/about-us.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default function AboutUs() {
<Head>
<title>About us</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<Presentation></Presentation>
<Team></Team>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<Presentation />
<Team />
<Footer />
</div>
);
}
12 changes: 6 additions & 6 deletions pages/advisory-subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ export default function AdvisorySubscription() {
<Head>
<title>Advisory subscription</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<TitleSection></TitleSection>
<Challenges></Challenges>
<Packages></Packages>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<TitleSection />
<Challenges />
<Packages />
<Footer />
</div>
);
}
6 changes: 3 additions & 3 deletions pages/crypto-payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ export default function CryptoPayment() {
<Head>
<title>Crypto Payment</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<Navbar />
<MobileNavbar />
<Banner />
<Clients />
<Advantages />
<AboutUs />
<Partners />
<Consultation />
<Footer></Footer>
<Footer />
</div>
);
}
8 changes: 4 additions & 4 deletions pages/hiring.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export default function Hiring() {
<Head>
<title>Hiring</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<HiringSection></HiringSection>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<HiringSection />
<Footer />
</div>
);
}
16 changes: 8 additions & 8 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ export default function Home() {
<Head>
<title>Brushfam</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<Banner></Banner>
<Web3Projects></Web3Projects>
<Products></Products>
<Services></Services>
<LetsBuild></LetsBuild>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<Banner />
<Web3Projects />
<Products />
<Services />
<LetsBuild />
<Footer />
</div>
</>
);
Expand Down
10 changes: 5 additions & 5 deletions pages/onboard-to-web3.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export default function OnboardToWeb3() {
<Head>
<title>Onboard your business to web3</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<TitleSection></TitleSection>
<Web3></Web3>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<TitleSection />
<Web3 />
<Footer />
</div>
);
}
12 changes: 6 additions & 6 deletions pages/privacy-policy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ export default function PrivacyPolicy() {
<Head>
<title>Privacy Policy</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<TitleSection></TitleSection>
<Navigation></Navigation>
<Content></Content>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<TitleSection />
<Navigation />
<Content />
<Footer />
</div>
);
}
16 changes: 8 additions & 8 deletions pages/security-audits.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export default function SecurityAudits() {
<Head>
<title>Security audits</title>
</Head>
<Navbar></Navbar>
<MobileNavbar></MobileNavbar>
<TitleSection></TitleSection>
<Audit></Audit>
<Services></Services>
<Process></Process>
<OurReports></OurReports>
<Footer></Footer>
<Navbar />
<MobileNavbar />
<TitleSection />
<Audit />
<Services />
<Process />
<OurReports />
<Footer />
</div>
);
}

0 comments on commit d1123e5

Please sign in to comment.