first commit

This commit is contained in:
2026-01-17 14:17:42 +05:30
commit 0f194eb9e7
328 changed files with 73544 additions and 0 deletions

38
app/(public)/layout.tsx Normal file
View File

@@ -0,0 +1,38 @@
import type { Metadata } from 'next'
import { Header } from '@/components/layout/header'
import { Footer } from '@/components/layout/footer'
import MobileTabBar from '@/components/layout/MobileTabBar'
import CTA from '@/components/sections/cta'
import UpdateNotification from '@/components/UpdateNotification'
export const metadata: Metadata = {
title: 'Padmaaja Rasooi - Premium Food Products | Multigrain Flour & Rice',
description: 'Premium quality multigrain flour and rice products. ISO certified food processing company specializing in SHREE AAHAR multigrain flour, basmati and non-basmati rice.'
}
export default async function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<div className="min-h-screen flex flex-col">
<Header />
<div className="flex-1 pb-16 md:pb-0">
{children}
</div>
<CTA />
<Footer />
{/* PWA Update Notification */}
<UpdateNotification />
{/* Mobile Tab Bar */}
<MobileTabBar />
{/* Development Cache Manager */}
{/* <DevCacheManager /> */}
</div>
)
}