A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
at master 326 B view raw
1import { cn } from "@/lib/utils" 2 3export function Container({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { 4 return ( 5 <div 6 className={cn( 7 "mx-auto w-full max-w-7xl px-4 sm:px-6 lg:px-8", 8 className 9 )} 10 {...props} 11 /> 12 ) 13}