-
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.
- Loading branch information
1 parent
e01e608
commit 0e51c97
Showing
2 changed files
with
58 additions
and
13 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'use client'; | ||
|
||
const Tour = () => { | ||
return ( | ||
<div className="bg-white py-6 sm:py-8 lg:py-12"> | ||
<div className="mx-auto max-w-screen-2xl px-4 md:px-8"> | ||
<div className="mx-auto flex max-w-xl flex-col items-center text-center"> | ||
<h1 className="mb-8 text-3xl font-bold text-black sm:text-4xl md:mb-12 md:text-5xl"> | ||
Take a Tour | ||
</h1> | ||
<p className="mb-4 text-gray-500 md:mb-6 md:text-lg xl:text-xl"> | ||
This is the tour page. More content will be added here. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Tour; |