Compare commits

..

19 Commits

Author SHA1 Message Date
5fbaba2e17 Fix linter errors after: set hero title to LLM 2026-01-27 15:17:06 +02:00
f52af27ea1 Content edit: set hero title to LLM 2026-01-27 15:16:46 +02:00
191be289ac fix 2026-01-27 15:14:48 +02:00
6ea0dc1827 Fix linter errors after: set the hero title to Vitaliy 2026-01-27 15:03:39 +02:00
71ea0ee07b Content edit: set the hero title to Vitaliy 2026-01-27 15:03:25 +02:00
fc43eec01e Content edit: change the hero title to Holy shit, it's working! 2026-01-27 14:44:31 +02:00
6de5e68525 Content edit: change the title to Yo, bud! 2026-01-27 14:40:47 +02:00
ee3b778376 Fix linter errors after: set hero title to TEST 2026-01-27 14:34:00 +02:00
5b82b937f9 Content edit: set hero title to TEST 2026-01-27 14:33:51 +02:00
c6880dda6d Fix linter errors after: set hero title to AYO! 2026-01-27 14:13:48 +02:00
728f333c0a Content edit: set hero title to AYO! 2026-01-27 14:13:39 +02:00
460ee0e9a7 Fix linter errors after: set hero title to AYO! 2026-01-27 14:13:35 +02:00
e2d57e6442 Update src/app/page.tsx 2026-01-27 12:06:51 +00:00
a8c743c03b Update src/app/page.tsx 2026-01-27 12:02:58 +00:00
8382afd34f Update src/app/layout.tsx 2026-01-27 12:02:57 +00:00
6b89e92335 Update src/app/blog/page.tsx 2026-01-27 12:02:56 +00:00
89be01890f Update src/app/page.tsx 2026-01-27 11:43:31 +00:00
287146d19a Update src/app/layout.tsx 2026-01-27 11:43:30 +00:00
bd46fa0137 Update src/app/blog/page.tsx 2026-01-27 11:43:30 +00:00
2 changed files with 6 additions and 4 deletions

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, {
method: "GET", headers: {
"Content-Type": "application/json"},
"Content-Type": "application/json"
},
});
if (response.ok) {

View File

@@ -1,7 +1,7 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
// import NavbarLayoutFloatitlengOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
@@ -12,6 +12,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Award, BookOpen, HelpCircle, Star, Users, Zap } from 'lucide-react';
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
export default function ITAcademyPage() {
return (
@@ -45,7 +46,7 @@ export default function ITAcademyPage() {
<div id="hero" data-section="hero">
<HeroSplit
title="Master Technology, Transform Your Future"
title="LLM"
description="Learn in-demand IT skills with industry experts. From web development to cybersecurity, our comprehensive courses prepare you for success in the tech industry."
tag="Start Your Journey"
tagIcon={Zap}
@@ -264,4 +265,4 @@ export default function ITAcademyPage() {
</div>
</ThemeProvider>
);
}
}