55 lines
3.1 KiB
Plaintext
55 lines
3.1 KiB
Plaintext
---
|
|
import { Image } from 'astro:assets'
|
|
import Layout from '../../layouts/Layout.astro'
|
|
const { frontmatter } = Astro.props
|
|
const title = "El Tornillo Motor Injection Machine"
|
|
const description = "This injection machine operates with a motor to reduce manual labor and enhance pressure for creating more detailed products."
|
|
const tags = ["HDPE","melting","injection","PS","LDPE","PP"]
|
|
const category = "Machines"
|
|
const difficulty = "Hard"
|
|
const time = "3-4 weeks"
|
|
const location = "Bogota, Colombia"
|
|
---
|
|
<Layout title={title} description={description}>
|
|
<article class="max-w-4xl mx-auto px-4 py-8">
|
|
<h1 class="text-4xl font-bold mb-8">{title}</h1>
|
|
<Image src={import('./IMG_5422-1879a27155c.jpg')} alt={title} class="w-full rounded-lg shadow-lg mb-8" />
|
|
<div class="prose prose-lg max-w-none mb-8">
|
|
<p>{description}</p>
|
|
<p class="text-gray-600">User Location: Bogota, Colombia</p>
|
|
</div>
|
|
<div class="space-y-12">
|
|
<section class="step-1">
|
|
<h2 class="text-2xl font-semibold mb-4">Step 1: Machine description</h2>
|
|
<div class="prose prose-lg max-w-none mb-6">
|
|
<Fragment set:html={step.text} />
|
|
</div>
|
|
<Image src={import('./Drawings-230412-1879a1fd178.jpg')} alt="Drawings-230412-1879a1fd178.jpg" class="w-full rounded-lg shadow-md mb-6" />
|
|
<section class="step-2">
|
|
<h2 class="text-2xl font-semibold mb-4">Step 2: Tools needed</h2>
|
|
<div class="prose prose-lg max-w-none mb-6">
|
|
<Fragment set:html={step.text} />
|
|
</div>
|
|
<Image src={import('./Screenshot 2023-04-19 at 10.24.12-1879a1e0b8f.png')} alt="Screenshot 2023-04-19 at 10.24.12-1879a1e0b8f.png" class="w-full rounded-lg shadow-md mb-6" />
|
|
<Image src={import('./Screenshot 2023-04-19 at 10.24.17-1879a1e2316.png')} alt="Screenshot 2023-04-19 at 10.24.17-1879a1e2316.png" class="w-full rounded-lg shadow-md mb-6" />
|
|
<Image src={import('./Screenshot 2023-04-19 at 10.24.22-1879a1e3832.png')} alt="Screenshot 2023-04-19 at 10.24.22-1879a1e3832.png" class="w-full rounded-lg shadow-md mb-6" />
|
|
<section class="step-3">
|
|
<h2 class="text-2xl font-semibold mb-4">Step 3: Build the machine!</h2>
|
|
<div class="prose prose-lg max-w-none mb-6">
|
|
<Fragment set:html={step.text} />
|
|
</div>
|
|
<section class="step-4">
|
|
<h2 class="text-2xl font-semibold mb-4">Step 4: Inject!</h2>
|
|
<div class="prose prose-lg max-w-none mb-6">
|
|
<Fragment set:html={step.text} />
|
|
</div>
|
|
<Image src={import('./WhatsApp Image 2023-04-14 at 9.05.51 AM-1879f335ab6.jpeg')} alt="WhatsApp Image 2023-04-14 at 9.05.51 AM-1879f335ab6.jpeg" class="w-full rounded-lg shadow-md mb-6" />
|
|
<section class="step-5">
|
|
<h2 class="text-2xl font-semibold mb-4">Step 5: Buy on the Bazar</h2>
|
|
<div class="prose prose-lg max-w-none mb-6">
|
|
<Fragment set:html={step.text} />
|
|
</div>
|
|
<Image src={import('./Screenshot 2023-04-19 at 10.20.30-1879a1a7e0e.png')} alt="Screenshot 2023-04-19 at 10.20.30-1879a1a7e0e.png" class="w-full rounded-lg shadow-md mb-6" />
|
|
</div>
|
|
</article>
|
|
</Layout> |