moved items to frontend
1
.gitignore → frontend/.gitignore
vendored
@ -27,6 +27,7 @@ yarn-error.log*
|
|||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env*.local
|
.env*.local
|
||||||
|
.env
|
||||||
|
|
||||||
# vercel
|
# vercel
|
||||||
.vercel
|
.vercel
|
||||||
|
Before Width: | Height: | Size: 221 KiB After Width: | Height: | Size: 221 KiB |
|
Before Width: | Height: | Size: 263 KiB After Width: | Height: | Size: 263 KiB |
|
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@ -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's Attire</span>
|
<span>Kevo's Attire</span>
|
||||||
@ -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",
|
||||||
@ -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,
|
||||||
@ -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"],
|
||||||