Merge version_1 into main #1
@@ -57,42 +57,42 @@ export default function FasilitasPage() {
|
||||
id: "asrama",
|
||||
name: "Asrama Nyaman",
|
||||
price: "Terawat & Aman",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg?_wi=2",
|
||||
imageAlt: "Asrama Santri"
|
||||
},
|
||||
{
|
||||
id: "masjid",
|
||||
name: "Masjid Bersejarah",
|
||||
price: "Pusat Spiritual",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medieval-church-frescoes-gothic-arches-patterns-sacred-architecture-details_169016-68748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medieval-church-frescoes-gothic-arches-patterns-sacred-architecture-details_169016-68748.jpg?_wi=2",
|
||||
imageAlt: "Masjid Pondok Pesantren"
|
||||
},
|
||||
{
|
||||
id: "lab",
|
||||
name: "Lab & Teknologi",
|
||||
price: "Fasilitas STEM",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg?_wi=3",
|
||||
imageAlt: "Laboratorium Sekolah"
|
||||
},
|
||||
{
|
||||
id: "perpus",
|
||||
name: "Perpustakaan Lengkap",
|
||||
price: "Ribuan Referensi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg?_wi=3",
|
||||
imageAlt: "Perpustakaan Pesantren"
|
||||
},
|
||||
{
|
||||
id: "olahraga",
|
||||
name: "Lapangan Olahraga",
|
||||
price: "Pengembangan Fisik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-doing-her-exercises-t-he-park-front-lake-high-quality-photo_114579-92341.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-doing-her-exercises-t-he-park-front-lake-high-quality-photo_114579-92341.jpg?_wi=2",
|
||||
imageAlt: "Lapangan Olahraga"
|
||||
},
|
||||
{
|
||||
id: "kantin",
|
||||
name: "Kantin Sehat",
|
||||
price: "Makanan Bergizi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-islamic-family-with-delicious-food_23-2149636062.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-islamic-family-with-delicious-food_23-2149636062.jpg?_wi=2",
|
||||
imageAlt: "Kantin Pesantren"
|
||||
}
|
||||
]}
|
||||
@@ -124,7 +124,7 @@ export default function FasilitasPage() {
|
||||
"Satpam Profesional",
|
||||
"Sistem Akses"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg?_wi=3",
|
||||
imageAlt: "Sistem Keamanan Pesantren"
|
||||
},
|
||||
{
|
||||
@@ -135,7 +135,7 @@ export default function FasilitasPage() {
|
||||
"Dokter Praktek",
|
||||
"Pemeriksaan Rutin"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg?_wi=4",
|
||||
imageAlt: "Fasilitas Kesehatan"
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function FasilitasPage() {
|
||||
"Komputer Lab",
|
||||
"Smart Classroom"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg?_wi=3",
|
||||
imageAlt: "Teknologi Pembelajaran"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Pondok Pesantren Darul Mustafa - Pendidikan Islam Berkualitas Cipanas Lebak",
|
||||
description: "Pendidikan Islam terpadu di Cipanas, Lebak, Banten. Program Tahfidz, Kitab Kuning & Akademik. Daftar santri baru sekarang - hubungi kami untuk informasi lebih lanjut.",
|
||||
keywords: "pondok pesantren, Cipanas, Lebak, Banten, Tahfidz, Kitab Kuning, pendidikan Islam",
|
||||
openGraph: {
|
||||
title: "Pondok Pesantren Darul Mustafa - Pendidikan Islam Berkualitas",
|
||||
description: "Bergabunglah dengan ribuan santri di pesantren terpercaya di Cipanas, Banten. Program pendidikan Islam terintegrasi dengan standar internasional.",
|
||||
url: "https://darulmustafa.edu",
|
||||
siteName: "Pondok Pesantren Darul Mustafa",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/inside-view-church-candelabra-with-candles_23-2150582335.jpg",
|
||||
alt: "Pondok Pesantren Darul Mustafa"
|
||||
}
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Pondok Pesantren Darul Mustafa",
|
||||
description: "Pendidikan Islam Berkualitas di Cipanas, Banten. Tahfidz • Kitab Kuning • Akademik Terintegrasi.",
|
||||
images: ["http://img.b2bpic.net/free-photo/inside-view-church-candelabra-with-candles_23-2150582335.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -126,7 +126,7 @@ export default function HomePage() {
|
||||
description: "Asrama nyaman, masjid bersejarah, dan komunitas yang solid untuk pengembangan karakter",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg?_wi=1"
|
||||
imageAlt="Fasilitas dan Santri Pondok Pesantren Darul Mustafa"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -150,21 +150,21 @@ export default function HomePage() {
|
||||
id: "tahfidz",
|
||||
title: "Program Tahfidz Al-Quran",
|
||||
tags: ["Hafalan Sempurna", "Makharijul Huruf", "Tarjamah"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-muslim-women-restaurant_23-2147794358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-muslim-women-restaurant_23-2147794358.jpg?_wi=1",
|
||||
imageAlt: "Program Tahfidz Al-Quran",
|
||||
},
|
||||
{
|
||||
id: "kitab",
|
||||
title: "Studi Kitab Kuning",
|
||||
tags: ["Fiqih", "Hadits", "Akidah", "Ushul"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/quran-dates-near-burning-candles_23-2147868957.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/quran-dates-near-burning-candles_23-2147868957.jpg?_wi=1",
|
||||
imageAlt: "Pembelajaran Kitab Kuning",
|
||||
},
|
||||
{
|
||||
id: "akademik",
|
||||
title: "Akademik Terintegrasi",
|
||||
tags: ["Kurikulum Nasional", "Bahasa Arab", "Bahasa Inggris", "STEM"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg?_wi=1",
|
||||
imageAlt: "Program Akademik Modern",
|
||||
},
|
||||
]}
|
||||
@@ -189,42 +189,42 @@ export default function HomePage() {
|
||||
id: "asrama",
|
||||
name: "Asrama Nyaman",
|
||||
price: "Terawat & Aman",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-men-hostel_23-2150446766.jpg?_wi=1",
|
||||
imageAlt: "Asrama Santri",
|
||||
},
|
||||
{
|
||||
id: "masjid",
|
||||
name: "Masjid Bersejarah",
|
||||
price: "Pusat Spiritual",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medieval-church-frescoes-gothic-arches-patterns-sacred-architecture-details_169016-68748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medieval-church-frescoes-gothic-arches-patterns-sacred-architecture-details_169016-68748.jpg?_wi=1",
|
||||
imageAlt: "Masjid Pondok Pesantren",
|
||||
},
|
||||
{
|
||||
id: "lab",
|
||||
name: "Lab & Teknologi",
|
||||
price: "Fasilitas STEM",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg?_wi=1",
|
||||
imageAlt: "Laboratorium Sekolah",
|
||||
},
|
||||
{
|
||||
id: "perpus",
|
||||
name: "Perpustakaan Lengkap",
|
||||
price: "Ribuan Referensi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg?_wi=1",
|
||||
imageAlt: "Perpustakaan Pesantren",
|
||||
},
|
||||
{
|
||||
id: "olahraga",
|
||||
name: "Lapangan Olahraga",
|
||||
price: "Pengembangan Fisik",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-doing-her-exercises-t-he-park-front-lake-high-quality-photo_114579-92341.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-doing-her-exercises-t-he-park-front-lake-high-quality-photo_114579-92341.jpg?_wi=1",
|
||||
imageAlt: "Lapangan Olahraga",
|
||||
},
|
||||
{
|
||||
id: "kantin",
|
||||
name: "Kantin Sehat",
|
||||
price: "Makanan Bergizi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-islamic-family-with-delicious-food_23-2149636062.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-islamic-family-with-delicious-food_23-2149636062.jpg?_wi=1",
|
||||
imageAlt: "Kantin Pesantren",
|
||||
},
|
||||
]}
|
||||
@@ -252,7 +252,7 @@ export default function HomePage() {
|
||||
title: "Ustadz Muhammad Rifqi, Lc.",
|
||||
subtitle: "Kepala Program Tahfidz",
|
||||
detail: "Hafidz Al-Quran Tafsir, Lulusan Al-Azhar Kairo",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-muslim-arabic-woman-using-laptop-sitting-cosy-sofa-beautiful-young-muslim-woman-is-using-laptop-smiling_657921-1749.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-muslim-arabic-woman-using-laptop-sitting-cosy-sofa-beautiful-young-muslim-woman-is-using-laptop-smiling_657921-1749.jpg?_wi=1",
|
||||
imageAlt: "Ustadz Muhammad Rifqi",
|
||||
},
|
||||
{
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
title: "Ustadzah Siti Nurhaliza, M.Ed.",
|
||||
subtitle: "Kepala Akademik",
|
||||
detail: "Master Pendidikan, Berpengalaman Kurikulum Internasional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-praying-ramadan_1303-27629.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-praying-ramadan_1303-27629.jpg?_wi=1",
|
||||
imageAlt: "Ustadzah Siti Nurhaliza",
|
||||
},
|
||||
],
|
||||
@@ -290,7 +290,7 @@ export default function HomePage() {
|
||||
title: "K.H. Abdurrochman Somad, M.A.",
|
||||
subtitle: "Pengasuh Pondok Pesantren",
|
||||
detail: "Ketua Yayasan, Ulama Terpercaya, Alumnus Universitas Madinah",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-man-using-laptop-street_74855-4738.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-man-using-laptop-street_74855-4738.jpg?_wi=1",
|
||||
imageAlt: "K.H. Abdurrochman Somad",
|
||||
},
|
||||
{
|
||||
@@ -298,7 +298,7 @@ export default function HomePage() {
|
||||
title: "Drs. H. Bambang Sutrisno",
|
||||
subtitle: "Direktur & Kepala Sekolah",
|
||||
detail: "Berpengalaman Pendidikan 25 tahun, Manajemen Pesantren",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg?_wi=1",
|
||||
imageAlt: "Drs. H. Bambang Sutrisno",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -103,7 +103,7 @@ export default function ProfilPage() {
|
||||
description: "Membangun hubungan kuat dengan wali santri, alumni, dan masyarakat lokal untuk menciptakan ekosistem pendidikan yang solid dan berkelanjutan.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg?_wi=2"
|
||||
imageAlt="Profil dan Sejarah Pondok Pesantren Darul Mustafa"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
@@ -132,7 +132,7 @@ export default function ProfilPage() {
|
||||
title: "K.H. Abdurrochman Somad, M.A.",
|
||||
subtitle: "Pengasuh & Ketua Yayasan",
|
||||
detail: "Ulama terpercaya, Alumnus Universitas Madinah, Dedikasi 30+ tahun pendidikan Islam",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-man-using-laptop-street_74855-4738.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mature-man-using-laptop-street_74855-4738.jpg?_wi=2",
|
||||
imageAlt: "K.H. Abdurrochman Somad",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function ProfilPage() {
|
||||
title: "Drs. H. Bambang Sutrisno",
|
||||
subtitle: "Direktur Pesantren & Kepala Sekolah",
|
||||
detail: "Berpengalaman Pendidikan 25 tahun, Spesialis Manajemen Pesantren Modern",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg?_wi=2",
|
||||
imageAlt: "Drs. H. Bambang Sutrisno",
|
||||
},
|
||||
],
|
||||
@@ -154,7 +154,7 @@ export default function ProfilPage() {
|
||||
title: "Ustadz Muhammad Rifqi, Lc.",
|
||||
subtitle: "Kepala Program Tahfidz",
|
||||
detail: "Hafidz Al-Quran Tafsir, Lulusan Al-Azhar Kairo, Pengalaman 15 tahun",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-muslim-arabic-woman-using-laptop-sitting-cosy-sofa-beautiful-young-muslim-woman-is-using-laptop-smiling_657921-1749.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-muslim-arabic-woman-using-laptop-sitting-cosy-sofa-beautiful-young-muslim-woman-is-using-laptop-smiling_657921-1749.jpg?_wi=2",
|
||||
imageAlt: "Ustadz Muhammad Rifqi",
|
||||
},
|
||||
{
|
||||
@@ -162,7 +162,7 @@ export default function ProfilPage() {
|
||||
title: "Ustadzah Siti Nurhaliza, M.Ed.",
|
||||
subtitle: "Kepala Akademik",
|
||||
detail: "Master Pendidikan, Berpengalaman Kurikulum Internasional, Sertifikasi UNESCO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-praying-ramadan_1303-27629.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-praying-ramadan_1303-27629.jpg?_wi=2",
|
||||
imageAlt: "Ustadzah Siti Nurhaliza",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -60,7 +60,7 @@ export default function ProgramPage() {
|
||||
"Makharijul Huruf",
|
||||
"Tarjamah"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-muslim-women-restaurant_23-2147794358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-muslim-women-restaurant_23-2147794358.jpg?_wi=2",
|
||||
imageAlt: "Program Tahfidz Al-Quran"
|
||||
},
|
||||
{
|
||||
@@ -72,7 +72,7 @@ export default function ProgramPage() {
|
||||
"Akidah",
|
||||
"Ushul"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/quran-dates-near-burning-candles_23-2147868957.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/quran-dates-near-burning-candles_23-2147868957.jpg?_wi=2",
|
||||
imageAlt: "Pembelajaran Kitab Kuning"
|
||||
},
|
||||
{
|
||||
@@ -84,7 +84,7 @@ export default function ProgramPage() {
|
||||
"Bahasa Inggris",
|
||||
"STEM"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-teacher-work-educational-system_23-2151737340.jpg?_wi=2",
|
||||
imageAlt: "Program Akademik Modern"
|
||||
}
|
||||
]}
|
||||
@@ -114,21 +114,21 @@ export default function ProgramPage() {
|
||||
id: "tahfidz-detail",
|
||||
name: "Tahfidz 3 Tahun",
|
||||
price: "2-3 Juz/Tahun",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/muslim-women-reading-quran-mosque-ramadan_53876-25229.jpg?_wi=3",
|
||||
imageAlt: "Program Tahfidz 3 Tahun"
|
||||
},
|
||||
{
|
||||
id: "kitab-detail",
|
||||
name: "Kitab Kuning 4 Tahun",
|
||||
price: "Pendalam Ilmu",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ramadan-concept-with-quran-dates_23-2147791795.jpg?_wi=2",
|
||||
imageAlt: "Program Kitab Kuning"
|
||||
},
|
||||
{
|
||||
id: "akademik-detail",
|
||||
name: "Akademik 6 Tahun",
|
||||
price: "SD-SMA Terintegrasi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/science-education-girls_23-2148581296.jpg?_wi=2",
|
||||
imageAlt: "Program Akademik 6 Tahun"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user