Skip to content

Commit

Permalink
refactoring(marketing): move features page images to /public
Browse files Browse the repository at this point in the history
  • Loading branch information
flsilva committed Nov 17, 2023
1 parent 39d6056 commit 76f9e1b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions src/app/(marketing)/features/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ import { buttonGreenClassName } from '@/modules/shared/controls/button/buttonCla
import { HeroShell } from '@/modules/marketing/shared/HeroShell';
import { HeroHeading } from '@/modules/marketing/shared/HeroHeading';
import { HeroCopy } from '@/modules/marketing/shared/HeroCopy';
import imgFeatures01 from './features-img-01.png';
import imgFeatures02 from './features-img-02.png';
import imgFeatures03 from './features-img-03.png';
import imgFeatures04 from './features-img-04.png';
import imgFeatures05 from './features-img-05.png';
import imgFeatures06 from './features-img-06.png';

export default function FeaturesPage() {
return (
Expand All @@ -25,7 +19,9 @@ export default function FeaturesPage() {
<p className="mt-16 mb-8 text-2xl font-medium text-gray-800">Projects</p>
<Image
alt="Projects on OpenTask"
src={imgFeatures01}
src="/images/marketing/features/features-img-01.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand All @@ -41,7 +37,9 @@ export default function FeaturesPage() {
<p className="mt-16 mb-8 text-2xl font-medium text-gray-800">Tasks</p>
<Image
alt="Tasks on OpenTask"
src={imgFeatures02}
src="/images/marketing/features/features-img-02.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand All @@ -55,7 +53,9 @@ export default function FeaturesPage() {
</p>
<Image
alt="Tasks on OpenTask"
src={imgFeatures03}
src="/images/marketing/features/features-img-03.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand All @@ -69,7 +69,9 @@ export default function FeaturesPage() {
</p>
<Image
alt="Tasks on OpenTask"
src={imgFeatures04}
src="/images/marketing/features/features-img-04.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand All @@ -83,7 +85,9 @@ export default function FeaturesPage() {
</p>
<Image
alt="Tasks on OpenTask"
src={imgFeatures05}
src="/images/marketing/features/features-img-05.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand All @@ -98,7 +102,9 @@ export default function FeaturesPage() {
<p className="mt-12 mb-6 text-2xl font-medium text-gray-800">What about today?</p>
<Image
alt="Tasks on OpenTask"
src={imgFeatures06}
src="/images/marketing/features/features-img-06.png"
width={435}
height={884}
style={{
marginLeft: 'auto',
marginRight: 'auto',
Expand Down

0 comments on commit 76f9e1b

Please sign in to comment.