This commit is contained in:
simonaltschaffl@gmail.com 2025-05-01 21:05:09 +02:00
parent 0b7a5cddeb
commit 7ffa87eb44
6 changed files with 1575 additions and 1 deletions

1560
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -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"

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -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() {

View 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;