+
{/* 顶部 Logo */}
学习进行时
@@ -69,7 +70,7 @@ const LearnPage = () => {
-
+
-
+
{/* 右边容器内容 */}
@@ -96,6 +97,13 @@ const LearnPage = () => {
+
+
);
};
diff --git a/app/components/news/footer/footer.tsx b/app/components/news/footer/footer.tsx
new file mode 100644
index 0000000..d009fb0
--- /dev/null
+++ b/app/components/news/footer/footer.tsx
@@ -0,0 +1,11 @@
+export function Footer() {
+ return (
+
+ )
+}
\ No newline at end of file
diff --git a/app/components/news/list/NewsList.tsx b/app/components/news/list/NewsList.tsx
index 361b0c4..0031a89 100644
--- a/app/components/news/list/NewsList.tsx
+++ b/app/components/news/list/NewsList.tsx
@@ -28,7 +28,7 @@ const NewsList: React.FC = () => {
const educationNews = mockNewsData.filter((news) => news.type === "教育");
return (
-
+
{/* 使用 Flexbox 将两个列表放在一行 */}
{/* 科技新闻 */}
diff --git a/app/routes/news.tsx b/app/routes/news.tsx
index 58fc702..f1132ef 100755
--- a/app/routes/news.tsx
+++ b/app/routes/news.tsx
@@ -7,11 +7,12 @@ import {TopNav} from "@/components/news/header/TopNav";
import NewsList from "@/components/news/list/NewsList";
import ImageGridSection from "@/components/news/body/ImageGridSection";
import GrassrootsDynamics from "@/components/news/body/GrassrootsDynamics";
-import { FhywPage } from "@/components/news/body/FireNews/fhyw";
-import { FhjtPage } from "@/components/news/body/FireNews/fhjt";
-import { FhwsPage } from "@/components/news/body/FireNews/fhws";
-import { FhrxPage } from "@/components/news/body/FireNews/fhrx";
+import { ImportantNews } from "@/components/news/body/FireNews/ImportantNews";
+import { LectureHall } from "@/components/news/body/FireNews/LectureHall";
+import { MicroVision } from "@/components/news/body/FireNews/MicroVision";
+import { Hotline } from "@/components/news/body/FireNews/Hotline";
import { AutoCarouselDemo } from "@/components/AutoCarousel";
+import { Footer } from "@/components/news/footer/footer";
export function meta( ) {
return [
@@ -26,20 +27,21 @@ export default function Home() {
);
}