Skip to content

Commit

Permalink
Merge pull request #4 from thisisarsh1/main
Browse files Browse the repository at this point in the history
Fareed blunder
  • Loading branch information
thisisarsh1 authored Sep 29, 2024
2 parents a9aba99 + d8545c6 commit d0717c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { motion } from "framer-motion";

function Footer({ className }: { className?: string }) {
return (
<footer className={cn(" text-neutral-500 py-6", className)}>
<footer className={cn(" text-neutral-500 py-6 bg-dot-white/[0.2]", className)}>
<div className="max-w-6xl mx-auto px-4 ">
<div className=" gap-8 flex justify-around ">
<div className="space-y-4 w-[40%] grid-cols-1">
Expand Down
6 changes: 6 additions & 0 deletions client/src/lib/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

0 comments on commit d0717c3

Please sign in to comment.