1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-24 09:22:58 +02:00

Update URLs

This commit is contained in:
Kamran Ahmed 2019-11-01 03:20:13 +04:00
parent 0aeb86503e
commit bdfe81ce1f
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,4 @@
import Link from 'next/link';
import { FeaturedContentWrap } from './style';
const FeaturedGuides = () => (
@ -6,7 +7,7 @@ const FeaturedGuides = () => (
<p className='border-through featured-separator'>
<span>
List of most visited guides&nbsp;
<a href="#" className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Guides &rarr;</a>
<Link href="/guides"><a className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Guides &rarr;</a></Link>
</span>
</p>
<div className="swim-lane row">

View File

@ -1,3 +1,4 @@
import Link from 'next/link';
import { FooterWrap } from './style.js'
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">
<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>
<a href="#" className='follow-author'>@kamranahmedse</a>
<Link href="https://twitter.com/kamranahmedse">
<a target="_blank" className='follow-author'>@kamranahmedse</a>
</Link>
</div>
<div className="brand-explanation">
<p>Community created roadmaps, articles, resources and journeys to help you choose your path and grow in your career.</p>

View File

@ -12,8 +12,8 @@ const PageHeader = () => (
<div className="nav-links">
<Link href="/roadmaps"><a>Roadmaps</a></Link>
<Link href="/guides"><a>Guides</a></Link>
<Link href="/faq"><a>FAQs</a></Link>
<Link href="/signup"><a>Sign Up</a></Link>
<Link href="/about"><a>FAQs</a></Link>
<Link href="/signup"><a className="signup">Sign Up</a></Link>
</div>
</div>
</HeaderWrap>