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 # local env files
.env*.local .env*.local
.env
# vercel # vercel
.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 Image from "next/image";
import MenuCard from "@/components/ui/MenuCard/MenuCard"; import MenuCard from "../components/ui/MenuCard/MenuCard";
import Product from "./products.json"; import Product from "./products.json";
import { cn } from "../lib/utils"; import { cn } from "../lib/utils";
export default function Home() { export default function Home() {
return ( 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 */} {/* Title */}
<div className="text-4xl w-full justify-center text-center items-center flex py-12 font-medium text-orange-600"> <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> <span>Kevo&#39;s Attire</span>

View File

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

View File

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

View File

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