Skip to content
Draft
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
13 changes: 12 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ const nextConfig: NextConfig = {
// typedRoutes: true,
allowedDevOrigins: ["tillisoftware.local"],
images: {
remotePatterns: [new URL("https://placecats.com/**")],
remotePatterns: [
{
protocol: "https",
hostname: "placecats.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "picsum.photos",
pathname: "/**",
},
],
// dangerouslyAllowSVG: true,
},
experimental: {
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"embla-carousel": "9.0.0-rc01",
"embla-carousel-auto-scroll": "9.0.0-rc01",
"embla-carousel-autoplay": "9.0.0-rc01",
"embla-carousel-class-names": "9.0.0-rc01",
"embla-carousel-react": "9.0.0-rc01",
"gsap": "^3.13.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"input-otp": "^1.4.2",
Expand Down Expand Up @@ -80,4 +82,4 @@
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}
}
73 changes: 44 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export default function Home() {
</div>

<div className="flex h-[600px] w-full items-center justify-center gap-4">
<CodeDemo
{/* <CodeDemo
blocks={[
{
tabTitle: "React",
Expand Down Expand Up @@ -346,7 +346,7 @@ export default function Home() {
]}
className="w-[400px] rounded bg-background/20 backdrop-blur"
speed={16}
/>
/> */}
<div className="h-80 w-[300px] rounded bg-gray-500/40"></div>
</div>
</div>
Expand Down Expand Up @@ -377,8 +377,8 @@ export default function Home() {
</div>
</div>
</section>

<section className="page-width my-32">
{/* TODO: make a set mx for mobile */}
<section className="box-border md:ml-20 md:mx-0 mx-10 my-32">
<div className="mb-6 flex items-center gap-2.5">
<SectionSubtitle
subtitle={"Solutions By Industry"}
Expand Down
Loading