Skip to content

Commit

Permalink
🚚 Migrate uses to app directory
Browse files Browse the repository at this point in the history
  • Loading branch information
carloscuesta committed Apr 15, 2023
1 parent 2b7dc6a commit ed21601
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 174 deletions.
174 changes: 174 additions & 0 deletions src/app/uses/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
import { type Metadata } from 'next'
import Image from 'next/image'

import PageTitle from 'src/components/shared/PageTitle'
import Wrapper from 'src/components/shared/Wrapper'
import Section from 'src/components/pages/uses/Section'

export const metadata: Metadata = {
title: 'Uses',
alternates: {
canonical: '/uses',
},
}

const Uses = () => (
<Wrapper>
<main>
<PageTitle title="Uses" />

<div>
<Image
src={require('./setup.jpg')}
alt="Carlos Cuesta workspace setup"
className="max-w-full rounded-md"
placeholder="blur"
width={1500}
height={1232}
quality={100}
/>

<Section
items={[
{
category: 'Desk',
title: 'Fully Jarvis Bamboo Standing Desk',
link: 'https://www.fully.com/standing-desks/jarvis-adjustable-height-desk-bamboo.html',
},
{
category: 'Laptop',
title: 'MacBook Pro 14 M1 Pro, 16 GB',
link: 'https://support.apple.com/kb/SP854',
},
{
category: 'Chair',
title: 'Herman Miller Aeron',
link: 'https://www.hermanmiller.com/en_eur/products/seating/office-chairs/aeron-chairs/',
},
{
category: 'Monitor',
title: 'Dell U3821DW',
link: 'https://www.dell.com/es-es/shop/monitor-curvo-dell-ultrasharp-38-con-concentrador-y-usb-c-u3821dw/apd/210-axnt/monitores-y-accesorios',
},
{
category: 'Webcam',
title: 'Logitech C920',
link: 'https://bit.ly/3jDlMZp',
},
{
category: 'Keyboard',
title: 'QK65 – QwertyKeys',
link: 'https://www.qwertykeys.com',
},
{
category: 'Mouse',
title: 'Logitech MX Master 3S',
link: 'https://www.logitech.com/products/mice/mx-master-3s.910-006560.html',
},
{
category: 'Desk Matt',
title: 'Oakywood Merino Wool Felt & Cork Grey',
link: 'https://oakywood.shop/products/grey-felt-cork-desk-mat',
},
{
category: 'Headphones',
title: 'Airpods Pro',
link: 'https://www.apple.com/airpods-pro',
},
{
category: 'Lighting',
title: 'BenQ Screenbar',
link: 'https://www.benq.com/en-us/lamps/computer-desklamp/screenbar.html',
},
{
category: 'Headphones',
title: 'Bose QuietComfort 45',
link: 'https://www.bose.com/en_us/products/headphones/noise_cancelling_headphones/quietcomfort-headphones-45.html#v=qc45_white_smoke',
},
{
category: 'Anti-fatigue standing mat',
title: 'Muvmat',
link: 'https://en.aeris.de/products/aeris-muvmat-schwarz-ohne-bezug',
},
{
category: 'Monitor Arm',
title: 'Ergotron HX',
link: 'https://www.ergotron.com/en-us/products/product-details/45-475',
},
{
category: 'Lighting',
title: 'Logitech Litra Glow',
link: 'https://www.logitech.com/products/lighting/litra-glow.946-000002.html',
},
{
category: 'Microphone',
title: 'Shure MV7',
link: 'https://www.shure.com/products/microphones/mv7',
},
{
category: 'Boom Arm',
title: 'Elgato Wave Mic Arm LP',
link: 'https://www.elgato.com/wave-mic-arm-lp',
},
{
category: 'Charger',
title: 'Belkin BoostCharge Pro',
link: 'https://www.belkin.com/es/cargador-inal%C3%A1mbrico-3-en-1-de-15-w-con-tecnolog%C3%ADa-magsafe-oficial/P-WIZ016.html',
},
{
category: 'Lighting',
title: 'Govee Flow Plus Light Bars',
link: 'https://eu.govee.com/collections/tv-gaming-lights/products/govee-rgbicww-wifi-bluetooth-flow-plus-light-bars',
},
{
category: 'Clock',
title: 'Mi Smart Clock',
link: 'https://www.mi.com/product/mi-smart-clock/',
},
]}
subTitle="Home office equipment"
title="Gear"
/>

<Section
items={[
{
category: 'Text Editor',
title: 'VSCode',
link: 'http://vscode.dev',
},
{
category: 'Terminal',
title: 'iTerm2',
link: 'https://iterm2.com',
},
{
category: 'Dotfiles',
title: 'Carlos Cuesta Dotfiles',
link: 'https://github.com/carloscuesta/dotfiles',
},
{
category: 'Window Management',
title: 'Rectangle',
link: 'https://rectangleapp.com',
},
{
category: 'JS Playground',
title: 'RunJS',
link: 'http://runjs.app',
},
{
category: 'Design',
title: 'Figma',
link: 'http://figma.com',
},
]}
subTitle="Tools to work efficiently"
title="Software"
/>
</div>
</main>
</Wrapper>
)

export default Uses
File renamed without changes
174 changes: 0 additions & 174 deletions src/pages/uses/index.tsx

This file was deleted.

0 comments on commit ed21601

Please sign in to comment.