Initial Paprika Next.js implementation
This commit is contained in:
29
app/ask/page.tsx
Normal file
29
app/ask/page.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
import Link from "next/link";
|
||||
import { SubmissionForm } from "@/components/forms/SubmissionForm";
|
||||
|
||||
export const metadata = {
|
||||
title: "Ask a Question"
|
||||
};
|
||||
|
||||
export default function AskPage() {
|
||||
return (
|
||||
<>
|
||||
<section className="hero subpage press-hero">
|
||||
<h1>Ask a question.</h1>
|
||||
<p className="subhead">
|
||||
Not ready to submit your full profile yet? Send us a quick question. We will help you
|
||||
understand whether Paprika may be a fit.
|
||||
</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="ask" />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user