Skip to content

Commit

Permalink
Merge branch 'main' of github.com:EKOKE-DAO/marketplace-dapp
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Jan 6, 2025
2 parents bfb79dd + f643d2d commit 866798a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
2 changes: 0 additions & 2 deletions src/js/components/App/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Roadmap from './Home/Roadmap';
import Whitepaper from './Home/Whitepaper';
import Presale from './Home/Presale';
import Giveaway from './Home/Giveaway';
import MortgageVsEkoke from './Home/MortgageVsEkoke';

const Home = () => (
<Container.FlexCols className="gap-8 items-center">
Expand All @@ -16,7 +15,6 @@ const Home = () => (
<Giveaway />
<Presale />
</Container.FlexResponsiveRow>
<MortgageVsEkoke />
<Tokenomics />
<Roadmap />
<Whitepaper />
Expand Down
9 changes: 5 additions & 4 deletions src/js/components/App/pages/Home/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Container from '../../../reusable/Container';
import Heading from '../../../reusable/Heading';
import Paragraph from '../../../reusable/Paragraph';
import Link from '../../../reusable/Link';
import MortgageVsEkoke from './Intro/MortgageVsEkoke';

const Intro = () => (
<Container.FlexCols className="items-center justify-center w-full mx-auto gap-2">
Expand All @@ -19,10 +20,9 @@ const Intro = () => (
</Heading.H1>
</Container.Container>
<Container.Container>
<Paragraph.Center>
Transform Your <strong>Property</strong> into{' '}
<strong>Digital Gold</strong>
</Paragraph.Center>
<Heading.H2 className="text-center">
Simple <strong>Mortgages</strong> on the <strong>Blockchain</strong>
</Heading.H2>
<Paragraph.Leading className="sm:w-5/6 mx-auto">
We're <strong>revolutionizing home financing</strong> by replacing
traditional mortgages with a fair, decentralized alternative. Through
Expand Down Expand Up @@ -51,6 +51,7 @@ const Intro = () => (
blockchains.
</Paragraph.Leading>
</Container.Container>
<MortgageVsEkoke />
<Container.Container>
<Heading.H2 className="text-center">
What makes us <strong>Unique</strong>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import * as React from 'react';

import Container from '../../../reusable/Container';
import Heading from '../../../reusable/Heading';
import Container from '../../../../reusable/Container';
import Heading from '../../../../reusable/Heading';

const MortgageVsEkoke = () => (
<Container.Container>
<Heading.H2 className="text-center">
<Container.FlexCols className="items-center justify-center mx-auto gap-2 w-3/6 sm:w-full mb-4">
<Heading.H3 className="text-center">
<strong>EKOKE DAO</strong> Vs. Bank Mortgage
</Heading.H2>
</Heading.H3>
<table className="block border border-collapse border-gray-300 bg-white sm:!text-xs">
<thead>
<tr>
Expand Down Expand Up @@ -86,7 +86,7 @@ const MortgageVsEkoke = () => (
</tr>
</tbody>
</table>
</Container.Container>
</Container.FlexCols>
);

export default MortgageVsEkoke;
6 changes: 2 additions & 4 deletions src/js/utils/seo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface SeoData {

const PAGE_TITLES: SeoPages = {
'/': {
title: 'EKOKE DAO | Transform Your Property into Digital Gold',
title: 'EKOKE DAO | Simple Mortgages on the Blockchain',
description:
'EKOKE is an innovative tool that aims to revolutionize the real estate industry. We give you a tool to tokenize the payment of your property to give you a sustainable replacement for the traditional mortgage',
},
Expand Down Expand Up @@ -123,9 +123,7 @@ export const hasSeoData = (pathname: string | Route): boolean => {

export const pageTitle = (pathname: string | Route): string => {
const data = seoData(pathname);
return data
? data.title
: 'EKOKE DAO | Transform Your Property into Digital Gold';
return data ? data.title : 'EKOKE DAO | Simple Mortgages on the Blockchain';
};

export const pageDescription = (pathname: string | Route): string => {
Expand Down

0 comments on commit 866798a

Please sign in to comment.