-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(welcome-guide): 💥 add welcome guide
- Loading branch information
1 parent
62d90d0
commit 13a3003
Showing
5 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React, { ReactElement } from "react"; | ||
|
||
export default function WelcomeGuide(): ReactElement { | ||
return ( | ||
<div className="flex flex-col items-center text-center gap-2"> | ||
<img className="w-40 scale-110" src="/images/rocket.svg" alt="logo" /> | ||
<h3 className="text-xl font-semibold ">Welcome to Robolaunch</h3> | ||
<p> | ||
robolaunch is a Cloud-Native Robotics Platform that provides the | ||
end-to-end infrastructure, software stack and tools for developing, | ||
simulating, deploying and operating ROS/ROS2 robots at scale. | ||
</p>{" "} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters