diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index fb3b7ad..3c33957 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,23 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "Sushi Kun | Fresh Japanese Takeaway in Clovelly, NSW", description: "Affordable, fresh sushi made daily in Clovelly. 4.7★ rated. Call 0414 161 574 for takeaway orders, delivery, and directions.", keywords: "sushi Clovelly, Japanese takeaway Sydney, fresh sushi NSW, affordable sushi near me, sushi delivery Clovelly", metadataBase: new URL("https://sushikun.com.au"),
- alternates: {
- canonical: "https://sushikun.com.au"},
- openGraph: {
- title: "Sushi Kun | Fresh Japanese Sushi in Clovelly", description: "Affordable, high-quality sushi made fresh daily. Visit us in Clovelly or call 0414 161 574.", url: "https://sushikun.com.au", siteName: "Sushi Kun", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/sushi-set-with-standart-ingridients_140725-4267.jpg", alt: "Fresh sushi platter"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Sushi Kun | Fresh Sushi in Clovelly", description: "Fresh Japanese sushi made daily. Affordable, high-quality, local favorite.", images: ["http://img.b2bpic.net/free-photo/sushi-set-with-standart-ingridients_140725-4267.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Sushi Kun - Fresh Sushi in Clovelly", description: "Fresh sushi made daily in Clovelly. Affordable, high-quality sushi and sashimi crafted with the finest ingredients."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9c7d145..17e0658 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -13,16 +13,16 @@ import { Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -129,24 +136,19 @@ export default function LandingPage() {
ctaTitle="Ready to order?"
ctaDescription="Call us now for fresh sushi delivery or visit our Clovelly location. No reservations needed."
ctaButton={{
- text: "Call 0414 161 574", href: "tel:0414161574"
- }}
+ text: "Call 0414 161 574", href: "tel:0414161574"}}
ctaIcon={Phone}
- useInvertedBackground={false}
+ useInvertedBackground={true}
animationType="slide-up"
faqs={[
{
- id: "1", title: "What are your hours?", content: "We're open daily from 11:00 AM to 9:00 PM. Visit us at 1/331 Clovelly Rd, Clovelly NSW 2031."
- },
+ id: "1", title: "What are your hours?", content: "We're open daily from 11:00 AM to 9:00 PM. Visit us in Clovelly. Call ahead for the best selection."},
{
- id: "2", title: "Do you offer delivery?", content: "Yes! Call us to arrange delivery to your location. Orders over $30 qualify for free delivery within Clovelly area."
- },
+ id: "2", title: "Do you offer delivery?", content: "Yes! Call us to arrange delivery to your location. Orders over $30 qualify for free delivery within Clovelly area."},
{
- id: "3", title: "What payment methods do you accept?", content: "We accept cash, card, and digital payments. Payment is required at pickup or upon delivery."
- },
+ id: "3", title: "What payment methods do you accept?", content: "We accept cash, card, and digital payments. Payment is required at pickup or upon delivery."},
{
- id: "4", title: "Are your ingredients fresh?", content: "Absolutely. We source premium fresh fish and vegetables daily and prepare everything to order for maximum freshness."
- },
+ id: "4", title: "Are your ingredients fresh?", content: "Absolutely. We source premium fresh fish and vegetables daily and prepare everything to order for maximum freshness."},
]}
accordionAnimationType="smooth"
showCard={true}
@@ -167,11 +169,9 @@ export default function LandingPage() {
title: "Contact", items: [
{ label: "Call: 0414 161 574", href: "tel:0414161574" },
{
- label: "Address: 1/331 Clovelly Rd", href: "https://maps.google.com/?q=1/331+Clovelly+Rd,+Clovelly+NSW+2031"
- },
+ label: "Address: Clovelly, Sydney", href: "https://maps.google.com/?q=Clovelly+Sydney"},
{
- label: "Get Directions", href: "https://maps.google.com/?q=1/331+Clovelly+Rd,+Clovelly+NSW+2031"
- },
+ label: "Get Directions", href: "https://maps.google.com/?q=Clovelly+Sydney"},
],
},
{
@@ -182,7 +182,7 @@ export default function LandingPage() {
},
]}
bottomLeftText="© 2025 Sushi Kun. All rights reserved."
- bottomRightText="Fresh sushi in Clovelly since 2010"
+ bottomRightText="Fresh sushi in Clovelly"
/>
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index fd9ebfc..bfae0a6 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -12,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
- --foreground: #120006e6;
- --primary-cta: #e63946;
+ --foreground: #1a1a1a;
+ --primary-cta: #c41e3a;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120006e6;
- --accent: #e2e2e2;
- --background-accent: #c4c4c4;
+ --accent: #e8e8e8;
+ --background-accent: #c41e3a;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);