diff --git a/src/app/cursos/page.tsx b/src/app/cursos/page.tsx index 88c79b9..21d031d 100644 --- a/src/app/cursos/page.tsx +++ b/src/app/cursos/page.tsx @@ -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", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..0a9edc7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}