import {Box, Grid, Icon, Input, Stack, TextField} from "@mui/material"; import Typography from "@mui/material/Typography"; import SearchIcon from '@mui/icons-material/Search'; export default function Home() { const exampleTools: { label: string; url: string }[] = [{ label: 'Create a transparent image', url: '' }, {label: 'Convert text to morse code', url: ''}, {label: 'Change GIF speed', url: ''}, {label: 'Pick a random item', url: ''}, {label: 'Find and replace text', url: ''}, {label: 'Convert emoji to image', url: ''}, {label: 'Split a string', url: ''}, {label: 'Calculate number sum', url: ''}, {label: 'Pixelate an image', url: ''}, ] return ( Transform Your Workflow with Omni Tools Boost your productivity with Omni Tools, the ultimate toolkit for getting things done quickly! Access thousands of user-friendly utilities for editing images, text, lists, and data, all directly from your browser. ), }}/> {exampleTools.map((tool) => ( {tool.label} ))} ) }