Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-14 13:48:47 +00:00
3 changed files with 46 additions and 24 deletions

View File

@@ -72,7 +72,7 @@ export default function CursosPage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg"
imageSrc="http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=3"
imageAlt="online course learning platform laptop"
ariaLabel="Seção hero de catálogo de cursos"
className="min-h-screen"
@@ -100,63 +100,63 @@ export default function CursosPage() {
id: "course-python",
name: "Python Avançado",
price: "R$ 199,90",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=4",
imageAlt: "online course learning platform laptop",
},
{
id: "course-design",
name: "Design Gráfico Profissional",
price: "R$ 249,90",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=3",
imageAlt: "classroom in-person students learning",
},
{
id: "course-marketing",
name: "Marketing Digital",
price: "R$ 179,90",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg?_wi=3",
imageAlt: "hybrid learning online and offline blend",
},
{
id: "course-business",
name: "Gestão Empresarial",
price: "R$ 299,90",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=4",
imageAlt: "classroom in-person students learning",
},
{
id: "course-frontend",
name: "Desenvolvimento Frontend",
price: "R$ 229,90",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=5",
imageAlt: "online course learning platform laptop",
},
{
id: "course-english",
name: "Inglês Conversacional",
price: "R$ 159,90",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg?_wi=4",
imageAlt: "hybrid learning online and offline blend",
},
{
id: "course-java",
name: "Java Enterprise",
price: "R$ 219,90",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=6",
imageAlt: "online course learning platform laptop",
},
{
id: "course-photography",
name: "Fotografia Profissional",
price: "R$ 189,90",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=5",
imageAlt: "classroom in-person students learning",
},
{
id: "course-spanish",
name: "Espanhol para Negócios",
price: "R$ 149,90",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg?_wi=5",
imageAlt: "hybrid learning online and offline blend",
},
]}

View File

@@ -1,24 +1,44 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "MatrículaPlus - Cursos Online e Presenciais",
description: "Plataforma de matrícula em cursos online, presenciais e híbridos. Inscrição rápida, certificados reconhecidos e suporte 24/7.",
keywords: "cursos online, presenciais, matricula, educacao, certificado, aprendizado, plataforma",
metadataBase: new URL("https://matriculaplus.com"),
alternates: {
canonical: "https://matriculaplus.com",
},
openGraph: {
title: "MatrículaPlus - Plataforma de Cursos",
description: "Inscreva-se em cursos de qualidade com flexibilidade. Online, presencial ou híbrido.",
siteName: "MatrículaPlus",
type: "website",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +47,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +61,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -204,42 +204,42 @@ export default function HomePage() {
id: "course-python",
name: "Python Avançado",
price: "R$ 199,90",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=1",
imageAlt: "online course learning platform laptop",
},
{
id: "course-design",
name: "Design Gráfico Profissional",
price: "R$ 249,90",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=1",
imageAlt: "classroom in-person students learning",
},
{
id: "course-marketing",
name: "Marketing Digital",
price: "R$ 179,90",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg?_wi=1",
imageAlt: "hybrid learning online and offline blend",
},
{
id: "course-business",
name: "Gestão Empresarial",
price: "R$ 299,90",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=2",
imageAlt: "classroom in-person students learning",
},
{
id: "course-frontend",
name: "Desenvolvimento Frontend",
price: "R$ 229,90",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-using-digital-tablet_1170-833.jpg?_wi=2",
imageAlt: "online course learning platform laptop",
},
{
id: "course-english",
name: "Inglês Conversacional",
price: "R$ 159,90",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/ceo-employees-attend-videocall-network-briefing_482257-88030.jpg?_wi=2",
imageAlt: "hybrid learning online and offline blend",
},
]}