mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
19 lines
452 B
JavaScript
19 lines
452 B
JavaScript
import Landing from "components/Landing";
|
|
import Layout from "components/Layout";
|
|
import { NextSeo } from "next-seo";
|
|
|
|
const Home = () => {
|
|
return (
|
|
<>
|
|
<NextSeo
|
|
title={`Welcome to ${process.env.NEXT_PUBLIC_TITLE} 👋`}
|
|
description={`SupaNexTail is a boilerplate for your website, based on Next.js, Supabase, and TailwindCSS`}
|
|
/>
|
|
<Layout>
|
|
<Landing />
|
|
</Layout>
|
|
</>
|
|
);
|
|
};
|
|
export default Home;
|