diff --git a/app/(app)/pastel/page.tsx b/app/(app)/pastel/page.tsx index 4569e45..529a1a2 100644 --- a/app/(app)/pastel/page.tsx +++ b/app/(app)/pastel/page.tsx @@ -61,7 +61,7 @@ function PlaygroundContent() {
-

Color Playground

+

Pastel

Interactive color manipulation and analysis tool

diff --git a/components/Hero.tsx b/components/Hero.tsx index a318083..76527cc 100644 --- a/components/Hero.tsx +++ b/components/Hero.tsx @@ -24,7 +24,7 @@ export default function Hero() { animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.8 }} > - + {/* Main heading */} diff --git a/components/pastel/layout/Footer.tsx b/components/pastel/layout/Footer.tsx deleted file mode 100644 index 81e081a..0000000 --- a/components/pastel/layout/Footer.tsx +++ /dev/null @@ -1,203 +0,0 @@ -'use client'; - -import Link from 'next/link'; -import { Github, Heart, ExternalLink } from 'lucide-react'; - -export function Footer() { - const currentYear = new Date().getFullYear(); - - return ( - - ); -} diff --git a/components/units/converter/MainConverter.tsx b/components/units/converter/MainConverter.tsx index 49f0570..50b0f0b 100644 --- a/components/units/converter/MainConverter.tsx +++ b/components/units/converter/MainConverter.tsx @@ -148,8 +148,10 @@ export default function MainConverter() { Convert {formatMeasureName(selectedMeasure)} -
-
+ {/* Input row, stacks vertically on mobile, horizontal on desktop */} +
+ {/* Value Input */} +
setInputValue(e.target.value)} placeholder="Enter value" - className="text-lg" + className={cn("text-lg", "w-full", "max-w-full")} />
-
+ {/* From Unit Select */} +
-
-
- {/* About */} -
-

Units UI

-

- A spectacular unit conversion app supporting 23 measurement categories - with 187 units. Built with Next.js 16, TypeScript, and Tailwind CSS 4 -

-
- - {/* Features */} -
-

Features

-
    -
  • • Real-time bidirectional conversion
  • -
  • • Fuzzy search across all units
  • -
  • • Dark mode support
  • -
  • • Conversion history
  • -
  • • Keyboard shortcuts
  • -
  • • Copy & favorite units
  • -
-
- - {/* Links */} -
-

Quick Links

- -
-
- - {/* Bottom Bar */} -
-
- Made with{' '} - {' '} - using Next.js 16 & Tailwind CSS 4 -
-
- © {currentYear} Units UI. All rights reserved -
-
-
- - ); -}