8 Commits

Author SHA1 Message Date
79272cfd74 Update src/app/styles/base.css 2026-03-05 14:41:47 +00:00
61f4219a17 Update src/app/layout.tsx 2026-03-05 14:41:47 +00:00
a486d96192 Merge version_2 into main
Merge version_2 into main
2026-03-05 14:39:22 +00:00
d18f22e6c6 Update src/app/page.tsx 2026-03-05 14:39:18 +00:00
b191769018 Update src/app/layout.tsx 2026-03-05 14:39:17 +00:00
2b4fa1c57d Merge version_1 into main
Merge version_1 into main
2026-03-05 14:32:27 +00:00
ff3619d3d5 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:31:37 +00:00
7df1e55777 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:30:01 +00:00
3 changed files with 12 additions and 39 deletions

View File

@@ -1,49 +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";
import { Inter_Tight } from "next/font/google";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "מועדון אומנויות לחימה - קרית אתא | הדרכה מקצועית", description: "מועדון הדרכה מקצועי בקרית אתא עם מאמן בעל ניסיון. קראטה, קיקבוקסינג, הגנה עצמית. ביקורות 5 כוכבים מ-27 מתאמנים שמעודכנים.", keywords: "מועדון קראטה קרית אתא, קיקבוקסינג, הגנה עצמית, אומנויות לחימה, אימון קרבי", openGraph: {
title: "מועדון אומנויות לחימה - קרית אתא", description: "הצטרף לקהילתנו וגלה הדרכה מקצועית בקראטה וקיקבוקסינג עם מאמן ברמה גבוהה.", siteName: "מועדון אומנויות לחימה", type: "website"},
twitter: {
card: "summary_large_image", title: "מועדון אומנויות לחימה - קרית אתא", description: "הדרכה מקצועית בקראטה וקיקבוקסינג בקרית אתא"},
robots: {
index: true,
follow: true,
},
title: "מועדון אומנויות לחימה", description: "מרכז אימונים מקצועי בקרית אתא"
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="he" dir="rtl" className={`${interTight.variable}`}>
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -82,7 +82,7 @@ export default function LandingPage() {
id: "1", title: "קיקבוקסינג", description: "אימון קיקבוקסינג מאומן המשלב טכניקות מתקדמות להתנגדות ותאי משפחה", imageSrc: "http://img.b2bpic.net/free-photo/young-boxer-trainer-is-training-new-girl-boxer-special-competitions_613910-13066.jpg", imageAlt: "Kickboxing Training"
},
{
id: "2", title: "קראטה", description: "אימוני קראטה מסורתיים לפיתוח כושר גופני ודיסציפלינה עצמית", imageSrc: "http://img.b2bpic.net/free-photo/two-judo-wrestlers-showing-their-technical-skills-fight-club_613910-13310.jpg", imageAlt: "Karate Classes"
id: "2", title: "איגרוף תאילנד", description: "אימוני איגרוף תאילנדי עתיר אנרגיה עם טכניקות מתקדמות וגמישות גופנית", imageSrc: "http://img.b2bpic.net/free-photo/two-judo-wrestlers-showing-their-technical-skills-fight-club_613910-13310.jpg", imageAlt: "Thai Boxing Classes"
},
{
id: "3", title: "הגנה עצמית", description: "קורסי הגנה עצמית מעשיים וזמינים לכל הגילאים", imageSrc: "http://img.b2bpic.net/free-photo/young-boxer-trainer-is-training-new-little-boy-boxer-special-competitions_613910-17244.jpg", imageAlt: "Self Defense Training"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}