oxen-website/pages/index.tsx

27 lines
597 B
TypeScript
Raw Normal View History

2021-01-28 07:07:25 +01:00
import Head from 'next/head';
2021-02-05 04:15:36 +01:00
import React from 'react';
2021-02-12 04:14:34 +01:00
import { HomeHero } from '../components/HomeHero';
import { HomeHeroBubble } from '../components/HomeHeroBubble';
2021-02-05 03:52:59 +01:00
import { METADATA } from '../constants';
2021-01-22 03:43:42 +01:00
2021-02-05 04:15:36 +01:00
const Index = () => {
2021-01-22 03:43:42 +01:00
return (
2021-01-22 04:21:00 +01:00
<div>
2021-01-28 07:07:25 +01:00
<Head>
2021-01-22 03:43:42 +01:00
<title>{METADATA.TITLE_SUFFIX}</title>
<meta
property="og:title"
2021-01-22 04:21:00 +01:00
content="Oxen - Privacy should be simple."
2021-01-22 03:43:42 +01:00
key="title"
/>
2021-01-28 07:07:25 +01:00
</Head>
2021-02-12 04:14:34 +01:00
{/* Only visible when no pages are open */}
<HomeHero />
<HomeHeroBubble />
2021-01-22 04:21:00 +01:00
</div>
2021-01-22 03:43:42 +01:00
);
};
export default Index;