- Restructure from single filament table to multi-category product catalog (filamenti, stampaci, ploce, mlaznice, delovi, oprema) - Add shared layout components (SiteHeader, SiteFooter, CategoryNav, Breadcrumb) - Add reusable UI primitives (Badge, Button, Card, Modal, PriceDisplay, EmptyState) - Add catalog components (CatalogPage, ProductTable, ProductGrid, FilamentCard, ProductCard) - Add admin dashboard with sidebar navigation and category management - Add product API endpoints and database migrations - Add SEO pages (politika-privatnosti, uslovi-koriscenja, robots.txt, sitemap.xml) - Fix light mode: gradient text contrast, category nav accessibility, surface tokens, card shadows, CTA section theming
19 lines
649 B
TypeScript
19 lines
649 B
TypeScript
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Bambu Lab Build Plate (Podloga)',
|
|
description: 'Bambu Lab build plate podloge - Cool Plate, Engineering Plate, High Temp Plate, Textured PEI.',
|
|
openGraph: {
|
|
title: 'Bambu Lab Build Plate (Podloga) - Filamenteka',
|
|
description: 'Bambu Lab build plate podloge - Cool Plate, Engineering Plate, High Temp Plate, Textured PEI.',
|
|
url: 'https://filamenteka.rs/ploce',
|
|
},
|
|
alternates: {
|
|
canonical: 'https://filamenteka.rs/ploce',
|
|
},
|
|
};
|
|
|
|
export default function PloceLayout({ children }: { children: React.ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|