mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-19 12:15:27 -04:00
refactor: migrate from Biome to oxlint/oxfmt, remove contact form
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
This commit is contained in:
@@ -12,19 +12,15 @@ const Marquee = ({
|
||||
repeat?: number;
|
||||
}) => (
|
||||
<div
|
||||
className={cn(
|
||||
"group flex flex-row overflow-hidden [--gap:2rem] [gap:var(--gap)]",
|
||||
className,
|
||||
)}
|
||||
className={cn("group flex flex-row [gap:var(--gap)] overflow-hidden [--gap:2rem]", className)}
|
||||
{...rest}
|
||||
>
|
||||
{Array(repeat)
|
||||
.fill(0)
|
||||
.map((_, i) => (
|
||||
<div
|
||||
// biome-ignore lint/suspicious/noArrayIndexKey: identical clones for animation; no natural unique key exists
|
||||
key={i}
|
||||
className="flex shrink-0 flex-row justify-around [gap:var(--gap)] motion-safe:animate-marquee"
|
||||
className="motion-safe:animate-marquee flex shrink-0 flex-row justify-around [gap:var(--gap)]"
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user