Merge version_1 into main #1
@@ -109,7 +109,7 @@ export default function AboutPage() {
|
||||
title: "Digital Marketing",
|
||||
description: "Master social media strategy, content creation, analytics, SEO, and paid advertising. Learn to build and execute campaigns that drive real business results.",
|
||||
tag: "10 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg?_wi=3",
|
||||
imageAlt: "Digital Marketing Track",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function AboutPage() {
|
||||
title: "Finance & Accounting",
|
||||
description: "Understand financial statements, budgeting, cash flow management, and business accounting. Build a strong foundation for financial decision-making.",
|
||||
tag: "8 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg?_wi=3",
|
||||
imageAlt: "Finance Track",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ export default function AboutPage() {
|
||||
title: "Export & Trade",
|
||||
description: "Navigate international business, export compliance, logistics, and trade documentation. Expand your business beyond borders with confidence.",
|
||||
tag: "7 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg?_wi=3",
|
||||
imageAlt: "Export Track",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -120,7 +120,7 @@ export default function ContactPage() {
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-executive-instructing-diverse-employees-new-modern-company-office-room-before-business-meeting-with-partners-analysing-reports-tablet_482257-5242.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-executive-instructing-diverse-employees-new-modern-company-office-room-before-business-meeting-with-partners-analysing-reports-tablet_482257-5242.jpg?_wi=2"
|
||||
imageAlt="team collaboration office meeting discussion"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -105,7 +105,7 @@ export default function CurriculumPage() {
|
||||
title: "Digital Marketing Mastery",
|
||||
description: "10 comprehensive modules covering social media strategy, content marketing, SEO optimization, paid advertising, analytics, and campaign management. Learn from industry experts and apply strategies to real business scenarios.",
|
||||
tag: "10 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg?_wi=2",
|
||||
imageAlt: "Digital Marketing Track",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function CurriculumPage() {
|
||||
title: "Finance & Business Accounting",
|
||||
description: "8 modules focusing on financial statements, budgeting, cash flow management, profit & loss analysis, tax planning, and investment fundamentals. Develop the financial literacy essential for business growth and sustainability.",
|
||||
tag: "8 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg?_wi=2",
|
||||
imageAlt: "Finance Track",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function CurriculumPage() {
|
||||
title: "Export & International Trade",
|
||||
description: "7 modules covering export regulations, international logistics, trade documentation, customs procedures, market research for exports, and global business partnerships. Build the knowledge needed to expand your business internationally.",
|
||||
tag: "7 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg?_wi=2",
|
||||
imageAlt: "Export Track",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Growpreneur Bootcamp | BRI Member Entrepreneurship Training",
|
||||
description: "Master Digital Marketing, Finance & Export through structured video learning. Join 500+ certified entrepreneurs. Complete bootcamp modules for official certification.",
|
||||
keywords: "entrepreneurship bootcamp, digital marketing training, finance course, export business, entrepreneur certification, BRI, Indonesia",
|
||||
metadataBase: new URL("https://growpreneur.bri.co.id"),
|
||||
alternates: {
|
||||
canonical: "https://growpreneur.bri.co.id",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Growpreneur Bootcamp | Transform Your Business",
|
||||
description: "Master Digital Marketing, Finance, and Export in our comprehensive entrepreneurship bootcamp by BRI Member",
|
||||
url: "https://growpreneur.bri.co.id",
|
||||
siteName: "Growpreneur",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/multiethnic-creative-people-having-brainstorming-meeting_58466-11713.jpg",
|
||||
alt: "Growpreneur Bootcamp Learning",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Growpreneur Bootcamp | BRI Entrepreneurship Training",
|
||||
description: "Join 500+ certified entrepreneurs. Master Digital Marketing, Finance, and Export.",
|
||||
images: ["http://img.b2bpic.net/free-photo/multiethnic-creative-people-having-brainstorming-meeting_58466-11713.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +65,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -139,7 +139,7 @@ export default function HomePage() {
|
||||
title: "Digital Marketing",
|
||||
description: "Master social media strategy, content creation, analytics, SEO, and paid advertising. Learn to build and execute campaigns that drive real business results.",
|
||||
tag: "10 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063150.jpg?_wi=1",
|
||||
imageAlt: "Digital Marketing Track",
|
||||
},
|
||||
{
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
title: "Finance & Accounting",
|
||||
description: "Understand financial statements, budgeting, cash flow management, and business accounting. Build a strong foundation for financial decision-making.",
|
||||
tag: "8 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg?_wi=1",
|
||||
imageAlt: "Finance Track",
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
title: "Export & Trade",
|
||||
description: "Navigate international business, export compliance, logistics, and trade documentation. Expand your business beyond borders with confidence.",
|
||||
tag: "7 Modules",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150769997.jpg?_wi=1",
|
||||
imageAlt: "Export Track",
|
||||
},
|
||||
]}
|
||||
@@ -338,7 +338,7 @@ export default function HomePage() {
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-executive-instructing-diverse-employees-new-modern-company-office-room-before-business-meeting-with-partners-analysing-reports-tablet_482257-5242.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-executive-instructing-diverse-employees-new-modern-company-office-room-before-business-meeting-with-partners-analysing-reports-tablet_482257-5242.jpg?_wi=1"
|
||||
imageAlt="Collaborative Learning"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user