返回 presentation-ai
allweone-logo.tsx
根目录 / src / components / globals / allweone-logo.tsx
1 import { cn } from "@/lib/utils";
2 import LocalFont from "next/font/local";
3 import type React from "react";
4 const AmericanTypewritter = LocalFont({
5 src: "../../fonts/American_Typewriter.woff",
6 });
7
8 export default function AllweoneText(
9 props: React.ButtonHTMLAttributes<HTMLDivElement> & { className?: string },
10 ) {
11 return (
12 <div className={cn("h-7 w-24", props.className)} {...props}>
13 <svg viewBox="0 0 70 15" className="h-full w-full">
14 <text
15 x="1"
16 y="12"
17 className={cn(
18 "fill-dbi tracking-wide",
19 AmericanTypewritter.className,
20 )}
21 fontSize="11.5"
22 >
23 ALLWEONE
24 </text>
25 </svg>
26 </div>
27 );
28 }
29
29 lines Plain Text