Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

faq #26

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

faq #26

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/pages/faq.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const FAQPage = () => {
return <div>
<h1>FAQs</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam id felis et ipsum bibendum ultrices. Morbi vitae pulvinar velit. Sed aliquam dictum sapien, id sagittis augue malesuada eu.</p>
</div>
};

export default FAQPage;
6 changes: 6 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { AutoSaveInput } from "@components/ui/Theme/AutoSaveInput";

Check warning on line 3 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Lint with ESLint and Prettier

'AutoSaveInput' is defined but never used
import ThemeSelect from "@components/ui/Theme/ThemeSelect";
import { useAtomValue } from "jotai";
import { type NextPage } from "next";
Expand Down Expand Up @@ -37,6 +37,12 @@
<meta name="description" content="Generated by create-t3-app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<nav>
<Link href="/faq">

Check failure on line 41 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Lint with ESLint and Prettier

'Link' is not defined
<a>FAQ</a>
</Link>
</nav>

<main className="h-full p-4">
<div className="text-2xl font-semibold">Test your Empathy!</div>
<Chat />
Expand Down
Loading