moved items to frontend

This commit is contained in:
Jacob Delgado 2024-08-07 21:38:02 -07:00
parent 21298f330d
commit a9646f30f7
23 changed files with 6 additions and 5 deletions

View File

@ -27,6 +27,7 @@ yarn-error.log*
# local env files
.env*.local
.env
# vercel
.vercel

View File

Before

Width:  |  Height:  |  Size: 221 KiB

After

Width:  |  Height:  |  Size: 221 KiB

View File

Before

Width:  |  Height:  |  Size: 263 KiB

After

Width:  |  Height:  |  Size: 263 KiB

View File

Before

Width:  |  Height:  |  Size: 219 KiB

After

Width:  |  Height:  |  Size: 219 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,11 +1,11 @@
import Image from "next/image";
import MenuCard from "@/components/ui/MenuCard/MenuCard";
import MenuCard from "../components/ui/MenuCard/MenuCard";
import Product from "./products.json";
import { cn } from "../lib/utils";
export default function Home() {
return (
<main className="flex min-h-screen flex-col px-20 bg-[#1D1F1D]">
<main className="flex min-h-screen flex-col px-20 bg-[#F5F5F5">
{/* Title */}
<div className="text-4xl w-full justify-center text-center items-center flex py-12 font-medium text-orange-600">
<span>Kevo&#39;s Attire</span>

View File

@ -3,7 +3,7 @@ import * as React from "react";
import Image from "next/image";
import localFont from "next/font/local";
import { Inter } from "next/font/google";
import { Card } from "@/components/ui/card";
import { Card } from "../card";
const interBold = localFont({
src: "./Inter-Bold.woff",

View File

@ -1,6 +1,6 @@
import * as React from "react"
import { cn } from "@/lib/utils"
import { cn } from "../../lib/utils"
const Card = React.forwardRef<
HTMLDivElement,

View File

@ -18,7 +18,7 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": ["frontend/src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],