Files
protekauto-frontend/src/pages/detail_sku.tsx
2025-06-26 06:59:59 +03:00

20 lines
763 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Head from "next/head";
import Header from "@/components/Header";
import Footer from "@/components/Footer";
export default function DetailSku() {
return (
<>
<Head>
<title>Detail SKU</title>
<meta name="description" content="Detail SKU" />
</Head>
<Header />
{/* Вставь сюда содержимое <body> из detail_sku.html, преобразовав в JSX. Все пути к картинкам и svg поменяй на /images/... */}
{/* Пример: <img src="/images/logo.svg" ... /> */}
{/* Сохрани все классы для стилей. */}
{/* TODO: Перевести формы и интерактив на React позже */}
<Footer />
</>
);
}