Update URLs
This commit is contained in:
@ -1,3 +1,4 @@
|
|||||||
|
import Link from 'next/link';
|
||||||
import { FeaturedContentWrap } from './style';
|
import { FeaturedContentWrap } from './style';
|
||||||
|
|
||||||
const FeaturedGuides = () => (
|
const FeaturedGuides = () => (
|
||||||
@ -6,7 +7,7 @@ const FeaturedGuides = () => (
|
|||||||
<p className='border-through featured-separator'>
|
<p className='border-through featured-separator'>
|
||||||
<span>
|
<span>
|
||||||
List of most visited guides
|
List of most visited guides
|
||||||
<a href="#" className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Guides →</a>
|
<Link href="/guides"><a className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Guides →</a></Link>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<div className="swim-lane row">
|
<div className="swim-lane row">
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import Link from 'next/link';
|
||||||
import { FooterWrap } from './style.js'
|
import { FooterWrap } from './style.js'
|
||||||
|
|
||||||
const PageFooter = () => (
|
const PageFooter = () => (
|
||||||
@ -7,9 +8,11 @@ const PageFooter = () => (
|
|||||||
<div className="site-meta-wrap col-12 col-sm-12 col-lg col-xl col-md-12">
|
<div className="site-meta-wrap col-12 col-sm-12 col-lg col-xl col-md-12">
|
||||||
<div className="site-meta">
|
<div className="site-meta">
|
||||||
<div className="brand-detail">
|
<div className="brand-detail">
|
||||||
<a href="#" className='brand'><img src="/static/brand.png" alt="" /> roadmap.sh</a>
|
<Link href="/"><a className='brand'><img src="/static/brand.png" alt="" /> roadmap.sh</a></Link>
|
||||||
<span className="preposition">by</span>
|
<span className="preposition">by</span>
|
||||||
<a href="#" className='follow-author'>@kamranahmedse</a>
|
<Link href="https://twitter.com/kamranahmedse">
|
||||||
|
<a target="_blank" className='follow-author'>@kamranahmedse</a>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="brand-explanation">
|
<div className="brand-explanation">
|
||||||
<p>Community created roadmaps, articles, resources and journeys to help you choose your path and grow in your career.</p>
|
<p>Community created roadmaps, articles, resources and journeys to help you choose your path and grow in your career.</p>
|
||||||
|
@ -12,8 +12,8 @@ const PageHeader = () => (
|
|||||||
<div className="nav-links">
|
<div className="nav-links">
|
||||||
<Link href="/roadmaps"><a>Roadmaps</a></Link>
|
<Link href="/roadmaps"><a>Roadmaps</a></Link>
|
||||||
<Link href="/guides"><a>Guides</a></Link>
|
<Link href="/guides"><a>Guides</a></Link>
|
||||||
<Link href="/faq"><a>FAQs</a></Link>
|
<Link href="/about"><a>FAQs</a></Link>
|
||||||
<Link href="/signup"><a>Sign Up</a></Link>
|
<Link href="/signup"><a className="signup">Sign Up</a></Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</HeaderWrap>
|
</HeaderWrap>
|
||||||
|
Reference in New Issue
Block a user