update
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import React, { ReactNode } from "react";
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
import Breadcrumb from "@/app/_components/Breadcrumb";
|
||||
|
||||
const breadcrumb = [
|
||||
{ href: "/", title: "首页" },
|
||||
|
@ -1,5 +1,5 @@
|
||||
import Image from "next/image";
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
import ArticleHeading from "@/app/_components/ArticleHeading";
|
||||
|
||||
const Page = () => {
|
||||
return (
|
||||
@ -8,7 +8,7 @@ const Page = () => {
|
||||
<p className={"text-center text-base"}>中科院院士</p>
|
||||
<p className={"mt-2 flex justify-center"}>
|
||||
<img
|
||||
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
|
||||
src={`${process.env.NEXT_PUBLIC_CLIENT_ADMIN_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
|
||||
alt={"张景中"}
|
||||
/>
|
||||
</p>
|
||||
|
@ -1,4 +1,4 @@
|
||||
import ArticleLayout from "@/app/components/ArticleLayout";
|
||||
import ArticleLayout from "@/app/_components/ArticleLayout";
|
||||
import { ReactNode } from "react";
|
||||
import { navigations } from "@/app/(introduce)/talents/config";
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React, { ReactNode } from "react";
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
import Breadcrumb from "@/app/_components/Breadcrumb";
|
||||
|
||||
const breadcrumb = [
|
||||
{ href: "/", title: "首页" },
|
||||
|
@ -1,4 +1,4 @@
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
import ArticleHeading from "@/app/_components/ArticleHeading";
|
||||
|
||||
const Page = () => {
|
||||
return (
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React, { ReactNode } from "react";
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
import Breadcrumb from "@/app/_components/Breadcrumb";
|
||||
|
||||
const breadcrumb = [
|
||||
{ href: "/", title: "首页" },
|
||||
|
@ -1,6 +1,6 @@
|
||||
import styles from "./page.module.scss";
|
||||
import Link from "next/link";
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
import ArticleHeading from "@/app/_components/ArticleHeading";
|
||||
|
||||
const academicians = [
|
||||
{
|
||||
@ -59,7 +59,7 @@ const Page = () => {
|
||||
>
|
||||
<img
|
||||
className={"h-[138px]"}
|
||||
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}${academician.picture}`}
|
||||
src={`${process.env.NEXT_PUBLIC_CLIENT_ADMIN_BASE_URL}${academician.picture}`}
|
||||
/>
|
||||
<Link href={academician.link}>{academician.name}</Link>
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React, { ReactNode } from "react";
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
import Breadcrumb from "@/app/_components/Breadcrumb";
|
||||
|
||||
const breadcrumb = [
|
||||
{ href: "/", title: "首页" },
|
||||
|
@ -1,5 +1,5 @@
|
||||
import Link from "next/link";
|
||||
import ArticleHeading from "@/app/components/ArticleHeading";
|
||||
import ArticleHeading from "@/app/_components/ArticleHeading";
|
||||
|
||||
const academicians = [
|
||||
{
|
||||
@ -28,7 +28,7 @@ const Page = () => {
|
||||
>
|
||||
<img
|
||||
className={"h-[138px]"}
|
||||
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}${academician.picture}`}
|
||||
src={`${process.env.NEXT_PUBLIC_CLIENT_ADMIN_BASE_URL}${academician.picture}`}
|
||||
/>
|
||||
<Link href={academician.link}>{academician.name}</Link>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user