Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95ad1845bf | |||
| 43d6481036 | |||
| 5dba1c9de3 | |||
| 5486a28faa | |||
| 935e926846 | |||
| 7864920823 | |||
| 8b13d3206f |
@@ -1,14 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Outfit } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const outfit = Outfit({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-outfit", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sakura Beauty - Korean & Japanese Beauty Products in Perth", description: "Perth's trusted destination for authentic Korean & Japanese skincare, makeup & viral beauty brands. Visit our Northbridge store today."};
|
title: "Sakura Beauty - Perth's Premium Korean & Japanese Beauty Store", description: "Discover authentic Korean and Japanese skincare, makeup & beauty products at Sakura Beauty in Northbridge, Perth. Expert staff, verified authentic products, and viral K-beauty trends."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -17,9 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${outfit.variable} font-outfit`}>
|
<body className={inter.className}>{children}
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Store", id: "store" },
|
{ name: "Store", id: "store" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Call Now", href: "tel:+61898765432" }}
|
button={{ text: "Book Skin Consultation", href: "tel:+61898765432" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
ratingText="4.6⭐ Rated by 145 loving customers"
|
ratingText="4.6⭐ Rated by 145 loving customers"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "tel:+61898765432" },
|
{ text: "Book Skin Consultation", href: "tel:+61898765432" },
|
||||||
{ text: "Get Directions", href: "https://maps.google.com/?q=1%2F369+William+St,+Perth+WA+6000" },
|
{ text: "Get Directions", href: "https://maps.google.com/?q=1%2F369+William+St,+Perth+WA+6000" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user