Feed done.

This commit is contained in:
MisbehavedNinjaRadiator 2025-06-29 18:06:46 +02:00 committed by MisbehavedNinjaRadiator
parent c3a7776fa5
commit d11f92e11a
7 changed files with 267 additions and 43 deletions

View file

@ -0,0 +1,16 @@
import React from "react";
import "./welcomeMessage.css";
export default function WelcomeMessage() {
return (
<div className="welcome-message">
<h1 className="welcome-title">Welcome!</h1>
<p className="welcome-text">
Become a part of our big, bird loving community!
</p>
<p className="desktop-welcome-text">
Exchange pictures and information about birds and be part of our big bird loving community! Pellentesque vulputate a enim ac feugiat. Donec dictum magna sit amet arcu commodo, quis vehicula nunc commodo. Pellentesque varius congue varius.
</p>
</div>
);
}