continue re-design

This commit is contained in:
Developers Digest
2025-09-05 13:06:17 -04:00
parent b96d048dbd
commit 836b085f75
270 changed files with 32269 additions and 5182 deletions
+29
View File
@@ -0,0 +1,29 @@
"use client";
import React from "react";
import { AnimatedDotIcon } from "@/components/shared/animated-dot-icon";
interface AsciiDotLoaderProps {
size?: number;
animated?: boolean;
className?: string;
pattern?: Parameters<typeof AnimatedDotIcon>[0]["pattern"];
}
// Thin wrapper to reuse the exact ASCII pixel effect used on the home hero
export default function AsciiDotLoader({
size = 20,
animated = true,
className,
pattern = "logs",
}: AsciiDotLoaderProps) {
return (
<AnimatedDotIcon
size={size}
active={animated}
alwaysHeat
className={className}
pattern={pattern}
/>
);
}