refactor: 🔥 Remove useless feedback button

This commit is contained in:
Jesse Wierzbinski 2024-08-14 16:20:12 +02:00
parent 9851b80f6d
commit c930bb0b3f
No known key found for this signature in database

View file

@ -2,7 +2,6 @@ import clsx from "clsx";
import Link from "next/link"; import Link from "next/link";
import type { ComponentPropsWithoutRef, ReactNode } from "react"; import type { ComponentPropsWithoutRef, ReactNode } from "react";
import { Feedback } from "./Feedback";
import { Heading } from "./Heading"; import { Heading } from "./Heading";
import { Prose } from "./Prose"; import { Prose } from "./Prose";
@ -15,9 +14,9 @@ export function wrapper({ children }: { children: ReactNode }) {
return ( return (
<article className="flex h-full flex-col pb-10 pt-16 overflow-hidden text-wrap"> <article className="flex h-full flex-col pb-10 pt-16 overflow-hidden text-wrap">
<Prose className="flex-auto">{children}</Prose> <Prose className="flex-auto">{children}</Prose>
<footer className="mx-auto mt-16 w-full max-w-2xl lg:max-w-5xl"> {/* <footer className="mx-auto mt-16 w-full max-w-2xl lg:max-w-5xl">
<Feedback /> <Feedback />
</footer> </footer> */}
</article> </article>
); );
} }