-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat third resources page build (#257)
* Build seconde resources page * Solve react-router-dom errors
- Loading branch information
Showing
14 changed files
with
761 additions
and
308 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,28 @@ | ||
import React from "react"; | ||
|
||
import SeoMetadata from "../../components/SeoMetadata"; | ||
import Content from "./sections/Content"; | ||
import Hero from "./sections/Hero"; | ||
import SimilarResources from "./sections/SimilarResources"; | ||
|
||
function Resource() { | ||
return ( | ||
<> | ||
<SeoMetadata | ||
title="Resources" | ||
description="Discover tech tools and resources to boost your productivity." | ||
type="article" | ||
url="https://www.spaceyatech.com/resources" | ||
ogImage="https://apis.spaceyatech.com/media/blog-images/syt.png" | ||
ogImageAlt="SpaceYaTech logo, social media handles, website URL, email, and more on a muted background." | ||
/> | ||
<main className="bg-[#F5F5F5] max-w-1440 mx-auto md:px-10 px-5 py-4 md:py-8 flex flex-col gap-12 md:gap-16 lg:gap-20"> | ||
<Hero /> | ||
<Content /> | ||
<SimilarResources /> | ||
</main> | ||
</> | ||
); | ||
} | ||
|
||
export default Resource; |
Oops, something went wrong.