mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-06 14:28:48 +00:00
16 lines
No EOL
685 B
TypeScript
16 lines
No EOL
685 B
TypeScript
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>
|
|
);
|
|
} |