22 lines
921 B
TypeScript
22 lines
921 B
TypeScript
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<div className="flex flex-col h-[100svh] pt-32 justify-center items-center text-center">
|
|
<div className="bg-purple-400 w-[100%] h-10">menu</div>
|
|
<div className="bg-blue-400 w-[10%] h-10">phone number</div>
|
|
<div className="bg-green-400 w-[20%] h-10">order online</div>
|
|
<div className="bg-yellow-400 w-[100%] h-10">hours</div>
|
|
<div className="bg-orange-400 w-[100%] h-10">email list</div>
|
|
<div className="bg-red-400 w-[100%] h-10">social media</div>
|
|
<div className="bg-purple-400 w-[100%] h-10">contact/booking</div>
|
|
<div className="bg-blue-400 w-[100%] h-10">location</div>
|
|
<div className="bg-green-400 w-[100%] h-10">reviews</div>
|
|
<div className="bg-orange-400 w-[100%] h-10">about</div>
|
|
<div className="bg-red-400 w-[100%] h-10">return policy</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|