mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
refactor: 🔥 Remove useless feedback button
This commit is contained in:
parent
9851b80f6d
commit
c930bb0b3f
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue