feat: init

This commit is contained in:
2026-05-08 22:49:12 +03:00
commit e383c3fdc5
84 changed files with 13640 additions and 0 deletions

19
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
"use client";
import { ChefStory, InnerHero, MetricStrip, SupplierLedger, TestimonialBand } from "@/widgets/template-ui";
export default function Page() {
return (
<>
<InnerHero
eyebrow="Kitchen"
title="Juniper Table держится на продукте, сезоне и спокойном сервисе"
text="About page объясняет кухню, поставщиков, открытый формат и почему меню меняется каждые несколько недель."
/>
<ChefStory />
<SupplierLedger />
<MetricStrip />
<TestimonialBand />
</>
);
}