Search header
This commit is contained in:
parent
5812a520c9
commit
e008729aad
2 changed files with 20 additions and 0 deletions
BIN
public/portrait.png
Normal file
BIN
public/portrait.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 MiB |
|
@ -1,9 +1,29 @@
|
|||
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() {
|
||||
return (
|
||||
<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>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue