Compare commits
11 Commits
b7359b66e5
...
cc27e134e7
| Author | SHA1 | Date | |
|---|---|---|---|
|
cc27e134e7
|
|||
|
9735880cd2
|
|||
|
04aabf4d84
|
|||
|
3769b15542
|
|||
|
1cb33ab973
|
|||
|
90dd9dee9e
|
|||
|
6827260693
|
|||
|
57e8c72f6b
|
|||
|
a4d18910bb
|
|||
|
4114817651
|
|||
|
6fa53423ec
|
@@ -4,7 +4,11 @@ import Link from "next/link";
|
|||||||
// images
|
// images
|
||||||
import headerBackground from "../public/typhoon.png";
|
import headerBackground from "../public/typhoon.png";
|
||||||
|
|
||||||
export default function Header({ titleText }) {
|
export default function Header({ titleText, propBG }) {
|
||||||
|
let bgsrc = headerBackground.src;
|
||||||
|
if (propBG) {
|
||||||
|
bgsrc = propBG.src;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<nav className={styles.toolbar}>
|
<nav className={styles.toolbar}>
|
||||||
@@ -24,7 +28,7 @@ export default function Header({ titleText }) {
|
|||||||
<header
|
<header
|
||||||
className={styles.header}
|
className={styles.header}
|
||||||
style={{
|
style={{
|
||||||
backgroundImage: `url('${headerBackground.src}')`,
|
backgroundImage: `url('${bgsrc}')`,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
</header>
|
</header>
|
||||||
|
|||||||
30
components/PostPreview.js
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import styles from "../styles/Home.module.css";
|
||||||
|
import Link from "next/link";
|
||||||
|
import Image from "next/image";
|
||||||
|
import ClickForMore from "./ClickForMore";
|
||||||
|
|
||||||
|
function PostPreview({ title, description, date, href, bg }) {
|
||||||
|
return (
|
||||||
|
<Link href={href} passHref>
|
||||||
|
<section className={styles.postPreviewWrap}>
|
||||||
|
<div className={styles.postPreview}>
|
||||||
|
<h2>{title}</h2>
|
||||||
|
<p>{description}</p>
|
||||||
|
<small>发布于 {date}</small>
|
||||||
|
{" | "}
|
||||||
|
<ClickForMore />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
width: "39%",
|
||||||
|
maxWidth: "20rem",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{bg && <Image src={bg} />}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PostPreview;
|
||||||
20
components/Video.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
function Video({ src }) {
|
||||||
|
const poster = src.substr(0, src.indexOf('.mp4')) + '_poster.jpg';
|
||||||
|
return (
|
||||||
|
<p
|
||||||
|
style={{
|
||||||
|
textAlign: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<video
|
||||||
|
src={src}
|
||||||
|
poster={poster || ""}
|
||||||
|
controls
|
||||||
|
preload="none"
|
||||||
|
width="70%"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Video;
|
||||||
4744
package-lock.json
generated
13
package.json
@@ -9,12 +9,11 @@
|
|||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "12.1.6",
|
"eslint": "^8.19.0",
|
||||||
"react": "18.1.0",
|
"eslint-config-next": "^12.2.1",
|
||||||
"react-dom": "18.1.0"
|
"next": "^12.2.1",
|
||||||
},
|
"react": "^18.2.0",
|
||||||
"devDependencies": {
|
"react-dom": "^18.2.0",
|
||||||
"eslint": "8.15.0",
|
"sharp": "^0.30.7"
|
||||||
"eslint-config-next": "12.1.6"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,15 @@
|
|||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import Link from "next/link";
|
|
||||||
import Header from "../components/Header";
|
import Header from "../components/Header";
|
||||||
import ClickForMore from "../components/ClickForMore";
|
import PostPreview from "../components/PostPreview";
|
||||||
|
|
||||||
|
import mainbg from "../public/mainbg.webp";
|
||||||
|
|
||||||
// styles
|
// styles
|
||||||
import styles from "../styles/Home.module.css";
|
import styles from "../styles/Home.module.css";
|
||||||
|
|
||||||
|
import bg486 from "../public/486.webp";
|
||||||
|
import bgmap from "../public/typhoon.png";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
@@ -15,25 +19,32 @@ export default function Home() {
|
|||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<Header></Header>
|
<Header propBG={mainbg}></Header>
|
||||||
|
|
||||||
<main className={styles.container}>
|
<main className={styles.container}>
|
||||||
<Link href="/posts/init" passHref>
|
<PostPreview
|
||||||
<section className={styles.postPreview}>
|
href="/posts/init"
|
||||||
<h2>Social OjO 正式成立</h2>
|
title="Social OjO 正式成立"
|
||||||
<p>平台介绍、期望及使命</p>
|
description="平台介绍、期望及使命"
|
||||||
<small>发布于 2022-05-12</small>{" | "}<ClickForMore />
|
date="2022-05-12"
|
||||||
</section>
|
/>
|
||||||
</Link>
|
|
||||||
<hr />
|
<hr />
|
||||||
<Link href="/posts/map" passHref>
|
<PostPreview
|
||||||
<section className={styles.postPreview}>
|
href="/posts/law"
|
||||||
<h2>全国灾害统计地图</h2>
|
title="社会管理法律"
|
||||||
<small>发布于 2022-05-12</small>{" | "}<ClickForMore />
|
description="小组研讨真实法律案件的案情和判决"
|
||||||
</section>
|
date="2022-07-06"
|
||||||
</Link>
|
bg={bg486}
|
||||||
|
/>
|
||||||
|
<hr />
|
||||||
|
<PostPreview
|
||||||
|
href="/posts/map"
|
||||||
|
title="全国灾害统计地图"
|
||||||
|
description=""
|
||||||
|
date="2022-05-12"
|
||||||
|
bg={bgmap}
|
||||||
|
/>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
39
pages/posts/law/1.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group1bg from "../../../public/group1bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>法律案件分析 - Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group1bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>残疾人劳工案例分析</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0003_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/1.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
pages/posts/law/2.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group2bg from "../../../public/group2bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>杀人犯潜逃的重婚案例- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group2bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>杀人犯潜逃的重婚案例</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0004_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/2.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
pages/posts/law/3.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group3bg from "../../../public/group3bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>离婚案例分析- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group3bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>离婚案例分析</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0005_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/3.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
pages/posts/law/4.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group4bg from "../../../public/group4bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>针对未成年人的性侵犯案件分析- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group4bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>针对未成年人的性侵犯案件分析</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0006_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/4.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
34
pages/posts/law/5.js
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group5bg from "../../../public/group5bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>精神病患者的离婚案例分析- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group5bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>精神病患者的离婚案例分析</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0007_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
pages/posts/law/6.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group6bg from "../../../public/group6bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>离婚法- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group6bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>离婚法</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0008_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/6.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
pages/posts/law/7.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Video from "../../../components/Video";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import group7bg from "../../../public/group7bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>婚内配偶同性恋行为导致的离婚纠纷案例分析- Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={group7bg}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>残疾人劳工案例分析</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/1/c0009_c.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Video
|
||||||
|
src={
|
||||||
|
"https://social-ojo-1301796004.cos.ap-guangzhou.myqcloud.com/videos/2/7.mp4"
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<div className={styles.grid}></div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
115
pages/posts/law/index.js
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
import Head from "next/head";
|
||||||
|
import Link from "next/link";
|
||||||
|
import Header from "../../../components/Header";
|
||||||
|
import Copyright from "../../../components/Copyright";
|
||||||
|
import Image from "next/image";
|
||||||
|
|
||||||
|
import styles from "../../../styles/Post.module.css";
|
||||||
|
import homeStyles from "../../../styles/Home.module.css";
|
||||||
|
|
||||||
|
import BG486 from "../../../public/486.webp";
|
||||||
|
import group1bg from "../../../public/group1bg.webp";
|
||||||
|
import group2bg from "../../../public/group2bg.webp";
|
||||||
|
import group3bg from "../../../public/group3bg.webp";
|
||||||
|
import group4bg from "../../../public/group4bg.webp";
|
||||||
|
import group5bg from "../../../public/group5bg.webp";
|
||||||
|
import group6bg from "../../../public/group6bg.webp";
|
||||||
|
import group7bg from "../../../public/group7bg.webp";
|
||||||
|
|
||||||
|
export default function LawPage() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>法律案件分析 - Social OjO</title>
|
||||||
|
<meta name="description" content="Social OjO 官方网站" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
</Head>
|
||||||
|
<Header propBG={BG486}></Header>
|
||||||
|
<main className={homeStyles.container}>
|
||||||
|
<section className={styles.post}>
|
||||||
|
<h2>社会管理法律</h2>
|
||||||
|
<small>发布于 2022-07-06</small>
|
||||||
|
<hr />
|
||||||
|
<div className={styles.grid}>
|
||||||
|
<Link href="/posts/law/1" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>残疾人劳工案例分析</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
周鲲鹏、郑梦佳、郑可儿
|
||||||
|
</small>
|
||||||
|
<Image src={group1bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/2" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>杀人犯潜逃的重婚案例</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
李昕玥、朱诗琪、张芷晴
|
||||||
|
</small>
|
||||||
|
<Image src={group2bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/3" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>离婚案例分析</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
黄珏晞、施适雨、易欣宇
|
||||||
|
</small>
|
||||||
|
<Image src={group3bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/4" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>针对未成年人的性侵犯案件分析</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
马玉、杨思怡、梁欣
|
||||||
|
</small>
|
||||||
|
<Image src={group4bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/5" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>精神病患者的离婚案例分析</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
林思源 吴懿鹏
|
||||||
|
</small>
|
||||||
|
<Image src={group5bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/6" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>离婚法</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
陈愿妃、张诺清、杨小满
|
||||||
|
</small>
|
||||||
|
<Image src={group6bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/posts/law/7" passHref>
|
||||||
|
<div>
|
||||||
|
<h3>婚内配偶同性恋行为导致的离婚纠纷案例分析</h3>
|
||||||
|
<small>
|
||||||
|
<Copyright />
|
||||||
|
陈久如、郑志泓
|
||||||
|
</small>
|
||||||
|
<Image src={group7bg} />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
BIN
public/486.webp
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
public/group1bg.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/group2bg.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/group3bg.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/group4bg.webp
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/group5bg.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/group6bg.webp
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/group7bg.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
public/mainbg.webp
Normal file
|
After Width: | Height: | Size: 203 KiB |
@@ -34,5 +34,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
line-height: 3rem;
|
line-height: 3rem;
|
||||||
text-shadow: 1px 1px 1px black;
|
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
|
||||||
|
color: white;
|
||||||
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,5 +7,12 @@
|
|||||||
.postPreview {
|
.postPreview {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.postPreviewWrap {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|||||||