nxtgauge-frontend-solid/src/routes/index.tsx

24 lines
1,007 B
TypeScript

import { Meta, Title } from '@solidjs/meta';
import PublicLanding from '~/components/PublicLanding';
export default function Home() {
const title = 'Nxtgauge | Verified Jobs & Professional Services Platform';
const description = 'Trusted hiring and opportunity discovery for customers, companies, professionals, and job seekers with verification built in.';
const canonical = 'https://test121.nxtgauge.com/';
return (
<>
<Title>{title}</Title>
<Meta name="description" content={description} />
<Meta property="og:title" content={title} />
<Meta property="og:description" content={description} />
<Meta property="og:type" content="website" />
<Meta property="og:url" content={canonical} />
<Meta name="twitter:card" content="summary_large_image" />
<Meta name="twitter:title" content={title} />
<Meta name="twitter:description" content={description} />
<link rel="canonical" href={canonical} />
<PublicLanding />
</>
);
}