Search header

This commit is contained in:
Markus Thielker 2024-12-21 14:52:44 +01:00
parent 5812a520c9
commit e008729aad
No known key found for this signature in database
2 changed files with 20 additions and 0 deletions

BIN
public/portrait.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

View file

@ -1,9 +1,29 @@
import React from 'react'; import React from 'react';
import Image from 'next/image';
import { Input } from '@/components/ui/input';
import { Separator } from '@/components/ui/separator';
export default async function Home() { export default async function Home() {
return ( return (
<div className="flex flex-col w-full min-h-screen"> <div className="flex flex-col w-full min-h-screen">
{ /* search header */}
<header className="pt-8 px-8 pb-2">
{ /* input */}
<div className="flex items-center space-x-2 sm:space-x-4 md:space-x-8">
<Image
height="50"
width="50"
src="/portrait.png"
className="rounded"
alt="Portrait of Markus Thielker"/>
<Input value="Who the fuck is Markus Thielker?" readOnly/>
</div>
</header>
<Separator/>
</div> </div>
); );
} }