diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c0b4046..3fda418 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
-import "./globals.css";
+import "@/styles/globals.css";
const inter = Inter({ subsets: ["latin"] });
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ac5ec37..9e77e61 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,7 +32,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
- { name: "Help", id: "faq" },
+ { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
/>
@@ -60,7 +60,7 @@ export default function LandingPage() {
},
{
imageSrc: "http://img.b2bpic.net/free-photo/shopping-center-employee-organizing-new-fashion-collection-racks_482257-113388.jpg?_wi=1", imageAlt: "TrueKitFC online store"
- },
+ }
]}
buttons={[
{ text: "Shop Now", href: "#products" },
@@ -74,7 +74,7 @@ export default function LandingPage() {