feat: add page title to home and privacy
This commit is contained in:
@@ -3,6 +3,7 @@ import Link from "next/link";
|
||||
import { IoLogoGithub } from "react-icons/io";
|
||||
|
||||
import Button from "~/components/Button";
|
||||
import { PageHead } from "~/components/PageHead";
|
||||
import { useTheme } from "~/providers/theme";
|
||||
import Cta from "./components/Cta";
|
||||
import FAQs from "./components/Faqs";
|
||||
@@ -16,6 +17,7 @@ export default function HomeView() {
|
||||
const isDarkMode = theme.activeTheme === "dark";
|
||||
return (
|
||||
<Layout>
|
||||
<PageHead title="Kan.bn | The open source alternative to Trello" />
|
||||
<div className="flex h-full w-full flex-col lg:pt-[5rem]">
|
||||
<div className="w-full pb-10 pt-32 lg:py-32">
|
||||
<div className="my-10 flex h-full w-full animate-fade-down flex-col items-center justify-center px-4">
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import Link from "next/link";
|
||||
|
||||
import { PageHead } from "~/components/PageHead";
|
||||
import Layout from "../home/components/Layout";
|
||||
|
||||
export default function PrivacyView() {
|
||||
@@ -29,6 +30,7 @@ export default function PrivacyView() {
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<PageHead title="Privacy Policy | kan.bn" />
|
||||
<div className="flex flex-col items-center">
|
||||
<div className="mb-20 flex h-full w-full max-w-[800px] flex-col lg:pt-[5rem]">
|
||||
<div className="flex items-center justify-center py-36 text-4xl font-bold tracking-tight text-light-1000 dark:text-dark-1000">
|
||||
|
||||
Reference in New Issue
Block a user