update
This commit is contained in:
parent
0b7a5cddeb
commit
7ffa87eb44
1560
package-lock.json
generated
1560
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -11,6 +11,7 @@
|
|||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-bootstrap": "^2.10.9",
|
"react-bootstrap": "^2.10.9",
|
||||||
"react-dom": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
|
"react-jupyter-notebook-viewer": "^1.1.13",
|
||||||
"react-router-dom": "^7.5.2",
|
"react-router-dom": "^7.5.2",
|
||||||
"react-scripts": "5.0.1",
|
"react-scripts": "5.0.1",
|
||||||
"web-vitals": "^2.1.4"
|
"web-vitals": "^2.1.4"
|
||||||
|
|||||||
BIN
public/assets/projects/languageStudy/images/stats.png
Normal file
BIN
public/assets/projects/languageStudy/images/stats.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 33 KiB |
BIN
public/assets/projects/languageStudy/images/top1000.png
Normal file
BIN
public/assets/projects/languageStudy/images/top1000.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@ -9,6 +9,7 @@ import AboutPage from "./about";
|
|||||||
import GoalsPage from "./goals";
|
import GoalsPage from "./goals";
|
||||||
import ContactPage from "./contact";
|
import ContactPage from "./contact";
|
||||||
import ServerPage from "./projects/server";
|
import ServerPage from "./projects/server";
|
||||||
|
import LanguagestudyPage from "./projects/languageStudy";
|
||||||
|
|
||||||
// Deine Komponenten für die verschiedenen Seiten
|
// Deine Komponenten für die verschiedenen Seiten
|
||||||
function Home() {
|
function Home() {
|
||||||
@ -41,7 +42,7 @@ function Privacy(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function LanguageStudy() {
|
function LanguageStudy() {
|
||||||
return <h2>Sprachstudie</h2>;
|
return <LanguagestudyPage />;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Server() {
|
function Server() {
|
||||||
|
|||||||
12
src/components/projects/languageStudy.jsx
Normal file
12
src/components/projects/languageStudy.jsx
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
|
function LanguagestudyPage() {
|
||||||
|
return (
|
||||||
|
<section className='center-titles'>
|
||||||
|
<h2>Wikipedia Sprachstudie</h2>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default LanguagestudyPage;
|
||||||
Loading…
Reference in New Issue
Block a user