Skip to content

Commit

Permalink
Restore Auth landing page's markup
Browse files Browse the repository at this point in the history
  • Loading branch information
one-aalam committed Mar 25, 2021
1 parent d665ea6 commit 635af65
Showing 1 changed file with 56 additions and 69 deletions.
125 changes: 56 additions & 69 deletions src/pages/index.tsx
@@ -1,86 +1,73 @@
import { GetServerSideProps, NextPage } from 'next'
import { FaDochub, FaBook } from 'react-icons/fa'
import styles from '~/styles/Home.module.css'
import HashIcon from '../svgs/hash-icon.svg'
import { NextPage } from 'next'
import { FaLock } from 'react-icons/fa'
import { NextAppPageProps } from '~/types/app'
import Layout from '~/components/Layout'
import { useMessage } from '~/lib/message'

type IndexPageServerSideProps = {
meta: {
title: string
}
}

const IndexPage: NextPage<NextAppPageProps> = ({ meta }) => {
return (
<Layout>
<div className={styles.container}>
<main className={styles.main}>
<h1 className="w-full flex flex-col place-items-center text-6xl gap-2">
<HashIcon /><img src="/nsk.png" alt="NSK Logo" className="w-32" /> {meta?.title}
</h1>
const IndexPage: NextPage<NextAppPageProps> = ({}) => {
const { handleMessage } = useMessage()

<p className={styles.description}>
Get started by editing{' '}
<code className={styles.code}>src/pages/index.tsx</code>
</p>

<div className={styles.grid}>
<a href="https://nextjs.org/docs" className={styles.card}>
<FaDochub className="text-4xl mb-2"/>
<h3>Documentation &rarr;</h3>
<p>Find in-depth information about Next.js features and API.</p>
</a>
return (
<Layout useBackdrop={true} usePadding={false}>
<div className="h-screen flex flex-col justify-center items-center relative">

<a href="https://nextjs.org/learn" className={styles.card}>
<FaBook className="text-4xl mb-2" />
<h3>Learn &rarr;</h3>
<p>Learn about Next.js in an interactive course with quizzes!</p>
</a>
{/* App logo and tagline*/}
<div className="w-full text-center mb-4 flex flex-col place-items-center">
<div><FaLock className="text-gray-600 text-5xl shadow-sm"/></div>
<h3 className="text-3xl text-gray-600">Supa<strong>Auth</strong></h3>
<small>Please provide your <strong>email</strong> and <strong>password</strong> and sign up</small>
</div>

<a
href="https://github.com/vercel/next.js/tree/master/examples"
className={styles.card}
>
<h3>Examples &rarr;</h3>
<p>Discover and deploy boilerplate example Next.js projects.</p>
</a>
{/* Sign Up form --> */}
<form className="w-full sm:w-1/2 xl:w-1/3">
<div className="border-teal p-8 border-t-12 bg-white mb-6 rounded-lg shadow-lg">
<div className="mb-4">
<label htmlFor="email" className="block font-semibold text-gray-800 mb-2">Email</label>
<input
id="email"
name="email"
type="email"
className="h-12 px-4 py-2 bg-white rounded shadow-inner border-gray-300 w-full border hover:border-gray-400"
placeholder="Your Email"
required
/>
</div>
<div className="mb-4">
<label htmlFor="password" className="block font-semibold text-gray-800 mb-2">Password</label>
<input
id="password"
name="password"
type="password"
className="h-12 px-4 py-2 bg-white rounded shadow-inner border-gray-300 w-full border hover:border-gray-400"
placeholder="Your password"
required
/>
</div>

<a
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
className={styles.card}
>
<h3>Deploy &rarr;</h3>
<p>
Instantly deploy your Next.js site to a public URL with Vercel.
</p>
</a>
</div>
</main>
{/* <!-- Sign Up form: Actions --> */}

<footer className={styles.footer}>
<a
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<img src="/vercel.svg" alt="Vercel Logo" className={styles.logo} />
</a>
</footer>
</div>
<div className="flex pt-4 gap-2">
<button type="submit" className="flex-1 bg-gray-500 border border-gray-600 text-white py-3 rounded w-full text-center shadow"
onClick={(evt) => {
evt.preventDefault()
handleMessage({ message: 'will sign up..', type: 'success'})
}}
>
Sign Up
</button>
</div>
</div>
</form>
</div>
</Layout>
)
}

export default IndexPage

export const getServerSideProps: GetServerSideProps<IndexPageServerSideProps> = async () => {
return {
props: {
meta: {
title: 'Next.js Starter Kit'
}
},
IndexPage.defaultProps = {
meta: {
title: 'SupaAuth - Sign Up'
}
}

0 comments on commit 635af65

Please sign in to comment.