import { Button } from '@components/common/ui/Button.js'; import { Item, ItemActions, ItemContent, ItemDescription, ItemTitle } from '@components/common/ui/Item.js'; import { cn } from '@evershop/evershop/lib/util/cn'; import { Settings } from 'lucide-react'; import React from 'react'; interface StoreSettingMenuProps { storeSettingUrl: string; } export default function StoreSettingMenu({ storeSettingUrl }: StoreSettingMenuProps) { const isActive = typeof window !== 'undefined' && new URL(storeSettingUrl, window.location.origin).pathname === window.location.pathname; return (
Store Setting
Configure your store information
); } export const layout = { areaId: 'settingPageMenu', sortOrder: 5 }; export const query = ` query Query { storeSettingUrl: url(routeId: "storeSetting") } `;