Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
16 changes: 8 additions & 8 deletions src/components/Testimonials.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,39 +25,39 @@ const testimonials = [
author: {
name: 'Linus Trovalds',
role: 'Creator of Linux',
avatar: require('@/img/avatars/linus-trovalds.jpg').default,
avatar: require('@/img/avatars/linus-trovalds.webp').default,
},
},
{
content: 'The people who are crazy enough to think they can change the world are the ones who do.',
author: {
name: 'Steve Jobs',
role: 'Founder @ Apple Inc.',
avatar: require('@/img/avatars/steve-jobs.jpg').default,
avatar: require('@/img/avatars/steve-jobs.webp').default,
},
},
{
content: `I choose a lazy person to do a hard job. Because a lazy person will find a easy way to do it.`,
author: {
name: 'Bill Gates',
role: 'Founder @ Microsoft Inc.',
avatar: require('@/img/avatars/bill-gates.jpg').default,
avatar: require('@/img/avatars/bill-gates.webp').default,
},
},
{
content: ` Everything that has not been hyperlinked will soon be hyperlinked.`,
author: {
name: 'Guillermo Rauch',
role: 'Founder @ Vercel.',
avatar: require('@/img/avatars/guillermo-rauch.jpg').default,
avatar: require('@/img/avatars/guillermo-rauch.webp').default,
},
},
{
content: `Any fool can write code that a computer can understand. Good programmers write code that humans can understand.`,
author: {
name: 'Martin Fowler',
role: 'Programmer',
avatar: require('@/img/avatars/martin-fowler.jpg').default,
avatar: require('@/img/avatars/martin-fowler.webp').default,
},
},
{
Expand All @@ -66,23 +66,23 @@ const testimonials = [
author: {
name: `Robert C. Martin`,
role: 'Clean Code: A Handbook of Agile Software Craftsmanship',
avatar: require('@/img/avatars/robert-martin.jpg').default,
avatar: require('@/img/avatars/robert-martin.webp').default,
},
},
{
content: `Java is to JavaScript what car is to Carpet.`,
author: {
name: 'Chris Heilmann',
role: 'Programmer',
avatar: require('@/img/avatars/chris-heilmann.jpg').default,
avatar: require('@/img/avatars/chris-heilmann.webp').default,
},
},
{
content: ' Code is like humor. When you have to explain it, it’s bad.',
author: {
name: 'Corey House',
role: `Founder @ ReactJS Consulting`,
avatar: require('@/img/avatars/corey-house.jpg').default,
avatar: require('@/img/avatars/corey-house.webp').default,
},
},
]
Expand Down
Binary file removed src/img/avatars/bill-gates.jpg
Binary file not shown.
Binary file added src/img/avatars/bill-gates.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/chris-heilmann.jpg
Binary file not shown.
Binary file added src/img/avatars/chris-heilmann.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/corey-house.jpg
Binary file not shown.
Binary file added src/img/avatars/corey-house.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/guillermo-rauch.jpg
Binary file not shown.
Binary file added src/img/avatars/guillermo-rauch.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/linus-trovalds.jpg
Binary file not shown.
Binary file added src/img/avatars/linus-trovalds.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/martin-fowler.jpg
Binary file not shown.
Binary file added src/img/avatars/martin-fowler.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/robert-martin.jpg
Binary file not shown.
Binary file added src/img/avatars/robert-martin.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/avatars/steve-jobs.jpg
Binary file not shown.
Binary file added src/img/avatars/steve-jobs.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@ import { BigText, InlineCode, Paragraph, Widont } from '@/components/home/common
import { Footer } from '@/components/home/Footer'
import { Hero } from '@/components/home/Hero'
import MenuButton from '@/components/home/Menu'
import { Newsletter } from '@/components/home/Newsletter'
import { OpenSource } from '@/components/home/OpenSource'
import { Logo } from '@/components/Logo'
import { Search } from '@/components/Search'
import { Testimonials } from '@/components/Testimonials'
import ThemeChanger from '@/components/ThemeChanger'
import Head from 'next/head'
import Image from 'next/image'
import NextLink from 'next/link'
import Router from 'next/router'
import ThemeChanger from '@/components/ThemeChanger'
import Image from 'next/image'

export default function Home() {
return (
Expand Down