Skip to content

Commit

Permalink
interface-bug-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Avdhesh-Varshney committed Oct 17, 2024
1 parent 1a90f63 commit 8a49b78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ export default function Home() {
return (
<div className="flex flex-col gap-5">
<header className="bg-gradient-to-l from-[#d41459] to-[#911a6c] rounded-lg flex justify-evenly shadow-lg gap-2 items-center align-middle">
<Image src="/logo.webp" alt="logo" width={80} height={80} className="object-contain rounded-full" />
<Image src="/logo.webp" alt="logo" width={80} height={80} sizes="80" className="object-contain rounded-full" />
<div className="flex flex-col gap-2 text-center">
<h1 className="text-xl font-bold">WEB MASTER LOG | YOUR WEB DEV HUB</h1>
</div>
<Image src="/image.png" alt="image" width={150} height={150} className="object-contain" />
<Image src="/image.png" alt="image" width={150} height={150} sizes="150" className="object-contain" />
</header>

<div className="p-8 bg-[#191c24] overflow-hidden rounded-lg shadow-lg w-full">
Expand Down
5 changes: 1 addition & 4 deletions src/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ import * as React from "react"

import { cn } from "@/lib/utils"

export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}

const Input = React.forwardRef<HTMLInputElement, InputProps>(
const Input = React.forwardRef<HTMLInputElement, React.InputHTMLAttributes<HTMLInputElement>>(
({ className, type, ...props }, ref) => {
return (
<input
Expand Down

0 comments on commit 8a49b78

Please sign in to comment.