Merge version_1_1781435270226 into main #1

Merged
bender merged 2 commits from version_1_1781435270226 into main 2026-06-14 11:08:57 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Exams",
"href": "#calendar"
"name": "Exams", "href": "#calendar"
},
{
"name": "Levels",
"href": "#levels"
"name": "Levels", "href": "#levels"
},
{
"name": "Demo",
"href": "#demo"
"name": "Demo", "href": "#demo"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,31 +36,27 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Profi Deutsch"
ctaButton={{
text: "Register",
href: "#contact",
}}
navItems={navItems} />
logo="Profi Deutsch"
logoImageSrc="http://img.b2bpic.net/free-vector/hand-check-mark-logo-business-branding-template-designs-inspiration-isolated-white-background_384344-1465.jpg"
ctaButton={{
text: "Register", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="© 2026 Profi Deutsch. All rights reserved."
copyright="Official TELC Uzbekistan Representative."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Send,
href: "#",
},
]}
/>
brand="© 2026 Profi Deutsch. All rights reserved."
copyright="Official TELC Uzbekistan Representative."
socialLinks={[
{
icon: "Instagram", href: "#"},
{
icon: "Send", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);