oxen-website/pages/index.tsx

29 lines
647 B
TypeScript

import Head from 'next/head';
import React from 'react';
import { HomeHero } from '../components/HomeHero';
import { HomeHeroBubble } from '../components/HomeHeroBubble';
import { METADATA } from '../constants';
const Index = () => {
return (
<>
<Head>
<title>{METADATA.TITLE_SUFFIX}</title>
<meta
property="og:title"
content="Oxen - Privacy should be simple."
key="title"
/>
</Head>
{/* Only visible when no pages are open */}
<div style={{ width: '100vw' }}>
<HomeHero />
<HomeHeroBubble />
</div>
</>
);
};
export default Index;