Initial Paprika Next.js implementation
This commit is contained in:
30
app/start/page.tsx
Normal file
30
app/start/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import Link from "next/link";
|
||||
import { SubmissionForm } from "@/components/forms/SubmissionForm";
|
||||
|
||||
export const metadata = {
|
||||
title: "Start Here"
|
||||
};
|
||||
|
||||
export default function StartPage() {
|
||||
return (
|
||||
<>
|
||||
<section className="hero subpage press-hero">
|
||||
<h1>Start here.</h1>
|
||||
<p className="subhead">
|
||||
Tell us a little about your background, goals, and timeline, whether you are actively
|
||||
preparing or just starting to explore. No need to have everything figured out. A quick
|
||||
summary is enough to start.
|
||||
</p>
|
||||
<div className="actions">
|
||||
<Link className="button primary" href="/start">
|
||||
Start Here
|
||||
</Link>
|
||||
<Link className="button secondary" href="/ask">
|
||||
Ask a Question
|
||||
</Link>
|
||||
</div>
|
||||
</section>
|
||||
<SubmissionForm type="start" />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user