renamed
This commit is contained in:
parent
53441d56e0
commit
fff9e63d43
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getAbout } from "@/services/about";
|
||||
import { cookies } from "next/headers";
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ import { baseAPI } from "@/lib/API";
|
|||
import { NewsPageType } from "@/lib/types/NewsPage.type";
|
||||
import Link from "next/link";
|
||||
import { BreadCrumbs } from "@/components/ui/bread-crumbs";
|
||||
import { Title } from "@/components/ui/title";
|
||||
import { Title } from "@/components/ui/Title";
|
||||
import Loader from "@/components/ui/Loader";
|
||||
|
||||
export default function SingleNewsPage({ params }: { params: { id: string } }) {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import clsx from "clsx";
|
|||
import { Card } from "@/components/shared/Card";
|
||||
import { BorderBtn } from "@/components/ui/Buttons";
|
||||
import { Pagination } from "@/components/ui/Pagination";
|
||||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
|
||||
const News = () => {
|
||||
const { activeLang } = useAppSelector(selectHeader);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function AdvertisingPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function AdvertisingPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function BusinessTours() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function CertificationPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function ForwardingPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function HybridsPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function MeetingsPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function MissionsPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function OrganizationPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function OutsourcingPage() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { getServices } from "@/services/services";
|
||||
|
||||
export default async function PersonalTrainingPage() {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"use client";
|
||||
|
||||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { baseAPI } from "@/lib/API";
|
||||
import { useAppSelector } from "@/redux/hooks";
|
||||
import { selectHeader } from "@/redux/slices/headerSlice";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"use client";
|
||||
|
||||
import { LayoutWithSidebar } from "@/components/page/layout-with-sidebar";
|
||||
import { LayoutWithSidebar } from "@/components/page/LayoutWithSidebar";
|
||||
import { baseAPI } from "@/lib/API";
|
||||
import { useAppSelector } from "@/redux/hooks";
|
||||
import { selectHeader } from "@/redux/slices/headerSlice";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { EventCard } from "@/components/shared/event-card";
|
||||
import { BreadCrumbs } from "@/components/ui/bread-crumbs";
|
||||
import { Title } from "@/components/ui/title";
|
||||
import { Title } from "@/components/ui/Title";
|
||||
import { getCalendar } from "@/services/calendar";
|
||||
import { Metadata } from "next";
|
||||
import { cookies } from "next/headers";
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import React from "react";
|
|||
import { BreadCrumbs } from "../ui/bread-crumbs";
|
||||
import { usePathname } from "next/navigation";
|
||||
import { useAppSelector } from "@/redux/hooks";
|
||||
import { Title } from "../ui/title";
|
||||
import { Title } from "../ui/Title";
|
||||
|
||||
interface Props {
|
||||
title: string;
|
||||
|
|
@ -20,7 +20,7 @@ import "swiper/css/scrollbar";
|
|||
import Link from "next/link";
|
||||
import { useLang } from "@/utils/useLang";
|
||||
import { GreenBtn } from "../ui/Buttons";
|
||||
import { Title } from "../ui/title";
|
||||
import { Title } from "../ui/Title";
|
||||
import Loader from "@/components/ui/Loader";
|
||||
|
||||
export const News = () => {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ import { selectHeader } from "@/redux/slices/headerSlice";
|
|||
import { PartnersType } from "@/lib/types/PartnersData.type";
|
||||
import { baseAPI } from "@/lib/API";
|
||||
import { useLang } from "@/utils/useLang";
|
||||
import { Title } from "../ui/title";
|
||||
import { Title } from "../ui/Title";
|
||||
|
||||
export const Partners = () => {
|
||||
const { activeLang } = useAppSelector(selectHeader);
|
||||
|
|
|
|||
Loading…
Reference in New Issue