Merge pull request #402 from mezotv/feat/opencut-blog

feat: add blog powered by marble
This commit is contained in:
iza
2025-07-22 00:59:57 +03:00
committed by GitHub
14 changed files with 523 additions and 9 deletions
+5
View File
@@ -16,6 +16,11 @@ export function Header() {
const rightContent = (
<nav className="flex items-center gap-3">
<Link href="/blog">
<Button variant="text" className="text-sm p-0">
Blog
</Button>
</Link>
<Link href="/contributors">
<Button variant="text" className="text-sm p-0">
Contributors
+22
View File
@@ -0,0 +1,22 @@
import { cn } from "@/lib/utils";
import type React from "react";
type ProseProps = React.HTMLAttributes<HTMLElement> & {
as?: "article";
html: string;
};
function Prose({ children, html, className }: ProseProps) {
return (
<article
className={cn(
"prose prose-h2:font-semibold max-w-none prose-h1:text-xl prose-a:text-blue-600 prose-p:text-justify dark:prose-invert mx-auto",
className
)}
>
{html ? <div dangerouslySetInnerHTML={{ __html: html }} /> : children}
</article>
);
}
export default Prose;
+7 -7
View File
@@ -1,9 +1,9 @@
"use client";
"use client"
import * as React from "react";
import { Separator as SeparatorPrimitive } from "radix-ui";
import * as React from "react"
import * as SeparatorPrimitive from "@radix-ui/react-separator"
import { cn } from "../../lib/utils";
import { cn } from "@/lib/utils"
const Separator = React.forwardRef<
React.ElementRef<typeof SeparatorPrimitive.Root>,
@@ -25,7 +25,7 @@ const Separator = React.forwardRef<
{...props}
/>
)
);
Separator.displayName = SeparatorPrimitive.Root.displayName;
)
Separator.displayName = SeparatorPrimitive.Root.displayName
export { Separator };
export { Separator }