Skip to content

Commit c9477fc

Browse files
committed
fix formatting
1 parent 66685c2 commit c9477fc

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

packages/nextjs/.prettierrc.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = {
2-
"arrowParens": "avoid",
3-
"printWidth": 120,
4-
"tabWidth": 2,
5-
"trailingComma": "all",
6-
"importOrder": ["^react$", "^next/(.*)$", "<THIRD_PARTY_MODULES>", "^@heroicons/(.*)$", "^~~/(.*)$"],
7-
"importOrderSortSpecifiers": true,
8-
"plugins": [require.resolve("@trivago/prettier-plugin-sort-imports")],
9-
}
2+
arrowParens: "avoid",
3+
printWidth: 120,
4+
tabWidth: 2,
5+
trailingComma: "all",
6+
importOrder: ["^react$", "^next/(.*)$", "<THIRD_PARTY_MODULES>", "^@heroicons/(.*)$", "^~~/(.*)$"],
7+
importOrderSortSpecifiers: true,
8+
plugins: [require.resolve("@trivago/prettier-plugin-sort-imports")],
9+
};

packages/nextjs/app/builders/0xBB1EaCf079A742953345693C9e3a7e83FB4A2f48/page.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ const AndrewPage: NextPage = () => {
3434
<section className="mb-16">
3535
<h2 className="text-3xl font-bold mb-6 text-primary">About</h2>
3636
<p className="text-lg text-base-content/80 leading-relaxed max-w-3xl">
37-
Passionate about building the decentralized future. I focus on creating robust smart contracts and
38-
intuitive dApps that bridge the gap between blockchain technology and real-world applications. Always
39-
learning, always building.
37+
Passionate about building the decentralized future. I focus on creating robust smart contracts and intuitive
38+
dApps that bridge the gap between blockchain technology and real-world applications. Always learning, always
39+
building.
4040
</p>
4141
</section>
4242

@@ -46,10 +46,7 @@ const AndrewPage: NextPage = () => {
4646
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
4747
{["Solidity", "Ethereum", "React", "TypeScript", "Node.js", "Hardhat", "Web3.js", "Smart Contracts"].map(
4848
skill => (
49-
<div
50-
key={skill}
51-
className="px-4 py-3 bg-base-200 rounded-lg text-center font-medium"
52-
>
49+
<div key={skill} className="px-4 py-3 bg-base-200 rounded-lg text-center font-medium">
5350
{skill}
5451
</div>
5552
),

packages/nextjs/postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
plugins: {
3-
'@tailwindcss/postcss': {},
3+
"@tailwindcss/postcss": {},
44
},
55
};

0 commit comments

Comments
 (0)