import * as React from "react"; import Header from '@/components/Header'; import Footer from '@/components/Footer'; import ProfileSidebar from '@/components/ProfileSidebar'; import CatalogSubscribe from '@/components/CatalogSubscribe'; import MobileMenuBottomSection from "@/components/MobileMenuBottomSection"; import LKMenu from '@/components/LKMenu'; import ProfileOrdersMain from '@/components/profile/ProfileOrdersMain'; import ProfileInfo from '@/components/profile/ProfileInfo'; import Head from "next/head"; import MetaTags from "@/components/MetaTags"; import { getMetaByPath } from "@/lib/meta-config"; const ProfileOrdersPage = () => { const metaData = getMetaByPath('/profile-orders'); return (
); }; export default ProfileOrdersPage;