Skip to content

Commit

Permalink
After running prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Urbano authored and Urbano committed Aug 26, 2024
1 parent cfd64e2 commit 3307555
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"endOfLine": "lf",
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "es5",
"singleQuote": true
}
"endOfLine": "lf",
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "es5",
"singleQuote": true
}
4 changes: 2 additions & 2 deletions app/projects/1/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import Image from 'next/image';

export default function ExpensyPage() {
return (
<div className='flex flex-col'>
<div className="flex flex-col">
<Navbar />
<div className='px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40'>
<div className="px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40">
<h2 className="text-2xl font-semibold mb-10">Expensy</h2>
<p className="mb-5">
Full stack NextJS 13 application to keep track of your income and
Expand Down
11 changes: 6 additions & 5 deletions app/projects/2/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import Image from 'next/image';

export default function BooksPage() {
return (
<div className='flex flex-col'>
<div className="flex flex-col">
<Navbar />
<div className='px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40'>
<div className="px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40">
<h2 className="text-2xl font-semibold mb-10">Books & More</h2>
<p className="mb-10">
NextJS project that lets you keep track of the books in your collection.
Uses the Google Books API to bring in book information when you add a
book. Clerk for authentication, Vercel for hosting. Check out the{' '}
NextJS project that lets you keep track of the books in your
collection. Uses the Google Books API to bring in book information
when you add a book. Clerk for authentication, Vercel for hosting.
Check out the{' '}
<a
href="https://futureinblockchain.com"
className="text-blue-600 hover:font-medium"
Expand Down
8 changes: 4 additions & 4 deletions app/projects/3/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import Image from 'next/image';

export default function PortfolioPage() {
return (
<div className='flex flex-col'>
<div className="flex flex-col">
<Navbar />
<div className='px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40'>
<div className="px-[34px] mt-[100px] max-w-[980px] w-full mx-auto lg:px-0 lg:mt-40">
<h2 className="text-2xl font-semibold mb-10">Portfolio</h2>
<p className="mb-5">
NextJS project highlighting a little bit more information about myself.
Uses the new Next 13 app directory. Check out the{' '}
NextJS project highlighting a little bit more information about
myself. Uses the new Next 13 app directory. Check out the{' '}
<a
href="https://www.urbanobaz.com/"
className="text-blue-600 hover:font-medium"
Expand Down
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module.exports = {
tailwindcss: {},
autoprefixer: {},
},
}
};
1 change: 0 additions & 1 deletion styles/Main.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@
transition: 0.3s;
}


.card,
.picture-image {
box-shadow: none;
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ module.exports = {
},
},
plugins: [],
}
};

0 comments on commit 3307555

Please sign in to comment.