Update text and hover styles in PostFeedback.astro
Changed button text colors in PostFeedback.astro component to improve visibility. Hover styles were also tweaked to enhance user interaction.
This commit is contained in:
parent
7ad68b54f4
commit
700b1cfe68
21 changed files with 461 additions and 468 deletions
|
@ -14,7 +14,7 @@ interface Props {
|
||||||
<h3 class="text-neutral-700 dark:text-neutral-300">{title}</h3>
|
<h3 class="text-neutral-700 dark:text-neutral-300">{title}</h3>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="group inline-flex items-center gap-x-2 rounded-lg border border-neutral-400 px-3 py-2 text-sm font-medium text-neutral-800 hover:border-yellow-500 hover:bg-yellow-500 hover:shadow-2xl hover:shadow-yellow-500 dark:border-neutral-500 dark:text-neutral-50 dark:hover:bg-yellow-500 dark:hover:text-neutral-800 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-neutral-600"
|
class="group inline-flex items-center gap-x-2 rounded-lg border border-neutral-400 px-3 py-2 text-sm font-medium text-neutral-700 hover:border-yellow-500 hover:bg-yellow-500 hover:shadow-2xl hover:shadow-yellow-500 dark:border-neutral-500 dark:text-neutral-300 dark:hover:bg-yellow-500 dark:hover:text-neutral-700 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-neutral-600"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="size-4 flex-shrink-0 transition duration-300 group-hover:-translate-y-1 group-focus-visible:-translate-y-1"
|
class="size-4 flex-shrink-0 transition duration-300 group-hover:-translate-y-1 group-focus-visible:-translate-y-1"
|
||||||
|
@ -34,7 +34,7 @@ interface Props {
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="group inline-flex items-center gap-x-2 rounded-lg border border-neutral-400 px-3 py-2 text-sm font-medium text-neutral-800 hover:bg-neutral-400 dark:border-neutral-500 dark:text-neutral-50 dark:hover:bg-neutral-500 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-neutral-600"
|
class="group inline-flex items-center gap-x-2 rounded-lg border border-neutral-400 px-3 py-2 text-sm font-medium text-neutral-700 hover:bg-neutral-400/30 dark:border-neutral-500 dark:text-neutral-300 dark:hover:bg-neutral-700/60 dark:focus:outline-none dark:focus:ring-1 dark:focus:ring-neutral-600"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="size-4 flex-shrink-0 transition duration-300 group-hover:translate-y-1 group-focus-visible:translate-y-1"
|
class="size-4 flex-shrink-0 transition duration-300 group-hover:translate-y-1 group-focus-visible:translate-y-1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: Erste Projekt-Checkliste
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Entdecken Sie die umfassende Dokumentation von ScrewFast für einen eingehenden Einblick in unsere erstklassigen Werkzeuge und Bauleistungen.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
|
@ -15,51 +15,50 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
Den Beginn eines neuen Projekts anzugehen kann gleichermaßen aufregend und herausfordernd sein. Mit der richtigen Vorbereitung und Anleitung ist Ihr Vorhaben auf Erfolgskurs. Die ScrewFast First Project Checklist wurde entwickelt, um einen klaren und strukturierten Ansatz zu bieten und sicherzustellen, dass Sie bei jedem Schritt des Weges gut vorbereitet sind.
|
||||||
|
|
||||||
## Project Preparation
|
## Projektvorbereitung
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="Umfang und Ziele">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. Stellen Sie sicher, dass der Umfang des Projekts, die Liefergegenstände und die angestrebten Ergebnisse klar definiert sind.
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. Legen Sie klare Ziele und Erfolgskriterien für den Abschluss des Projekts fest.
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="Werkzeuge und Ausrüstung">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. Erstellen Sie eine Liste aller benötigten ScrewFast Werkzeuge und Ausrüstungen.
|
||||||
2. Verify inventory availability and condition before starting
|
2. Überprüfen Sie die Verfügbarkeit und den Zustand des Inventars vor Beginn.
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="Dienstleistungen arrangieren">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. Wenn zusätzliche Expertise oder Arbeitskräfte benötigt werden, vereinbaren Sie rechtzeitig ScrewFast Bauarbeiten.
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. Klären Sie Service Level Agreements und Zeitpläne mit Ihrem ScrewFast Vertreter.
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## Projektumsetzung
|
||||||
### Initial Phase
|
### Erste Phase
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. Richten Sie den Projektstandort gemäß den ScrewFast Einrichtungsrichtlinien ein.
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. Führen Sie ein erstes Teammeeting durch, um sich auf die Projektziele und ScrewFast Methodologien abzustimmen.
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. Legen Sie Projektprüfpunkte und Meilensteine für regelmäßige Bewertungen fest.
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
## Zusätzliche Ressourcen
|
||||||
## Additional Resources
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="Ausführliche Anleitungen"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="Greifen Sie auf umfangreiche Dokumentationen und Benutzerhandbücher für ScrewFast Werkzeuge und Dienstleistungen zu."
|
||||||
href="en/guides/getting-started"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="Support-Kontakte"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="Halten Sie die Kontaktdaten für den ScrewFast Support bereit, der Ihnen während Ihres Projekts zur Verfügung steht."
|
||||||
href="en/guides/getting-started"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="Fortgeschrittenes Lernen"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="Erkunden Sie weitere Bildungsressourcen von ScrewFast, um Ihre Fähigkeiten und Ihr Wissensniveau zu verfeinern."
|
||||||
href="en/guides/getting-started"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: Erste Schritte
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Entdecken Sie die umfassende Dokumentation von ScrewFast für einen eingehenden Einblick in unsere erstklassigen Werkzeuge und Bauleistungen.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,66 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
Willkommen bei ScrewFast Docs! Wir freuen uns, Ihnen den Einstieg mit unseren erstklassigen Werkzeugen zu erleichtern. Dieser Leitfaden soll Ihnen einen Überblick über unser Werkzeugsortiment verschaffen, Ihnen die Grundlagen vermitteln und Sie für Ihr erstes Projekt fit machen. Tauchen wir gleich ein in die Welt hochwertiger und zuverlässiger Handwerkskunst mit ScrewFast.
|
||||||
|
|
||||||
## Tools Overview
|
## Übersicht über die Werkzeuge
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="Schraubendreher-Set" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
Vielseitig und ergonomisch, geeignet für alle Schraubentypen.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Mehr erfahren" href="de/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="Schlagbohrmaschine" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
Leistungsstark für Bohr- und Schlagbohranwendungen.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Mehr erfahren" href="de/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="Elektrosägen" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
Präzises Schneiden mit einstellbaren Einstellungen für verschiedene Materialien.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Mehr erfahren" href="de/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## Einrichtungsanweisungen
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. Auspacken Icon Ihre ScrewFast Werkzeuge auspacken
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
Öffnen Sie die Verpackung vorsichtig und überprüfen Sie, ob alle Komponenten vorhanden sind. Machen Sie sich mit dem Werkzeug und etwaigen Zubehörteilen vertraut.
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. Sicherheitsüberprüfung Icon Erste Einrichtung und Sicherheitsüberprüfungen
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
Lesen Sie das Sicherheitshandbuch, bevor Sie das Werkzeug verwenden. Überprüfen Sie das Werkzeug auf Transportschäden und stellen Sie sicher, dass Sicherheitsvorrichtungen vorhanden sind.
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. Kalibrierung Icon Kalibrierung und Vorbereitung für die erste Verwendung
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
Befolgen Sie die Anweisungen des Herstellers, um Ihre Werkzeuge bei Bedarf zu kalibrieren. Stellen Sie sicher, dass die Batterien geladen sind oder die elektrischen Anschlüsse sicher sind.
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## Reinigung und Wartung
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
Trennen Sie Werkzeuge immer vom Stromnetz, bevor Sie sie reinigen. Verwenden Sie ein weiches, trockenes Tuch, um die
|
||||||
exterior and store in a dry place.
|
Außenseite abzuwischen und lagern Sie sie an einem trockenen Ort.
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
Regelmäßige Wartung gewährleistet Langlebigkeit und Sicherheit. Reinigen Sie Ihre Werkzeuge nach jedem Gebrauch, überprüfen Sie auf Abnutzung und schmieren Sie bewegliche Teile gemäß dem Handbuch des Werkzeugs.
|
||||||
|
|
||||||
## Additional Resources
|
## Zusätzliche Ressourcen
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="Ausführliche Tutorials"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="Tauchen Sie mit Experten-Tutorials tief in die Verwendung unserer Werkzeuge ein."
|
||||||
href="/guides/customization/"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="Video-Demos"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="Visuelle Anleitungen, um das Beste aus Ihren Werkzeugen herauszuholen."
|
||||||
href="/guides/customization/"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="Garantieinformationen"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="Verstehen Sie Ihre Deckung und wie Sie im Bedarfsfall einen Anspruch geltend machen können."
|
||||||
href="/guides/customization/"
|
href="de/guides/getting-started"
|
||||||
/>
|
/>
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: Einführung in die ScrewFast-Dienstleistungen
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Entdecken Sie die umfassende Dokumentation von ScrewFast für einen eingehenden Einblick in unsere erstklassigen Werkzeuge und Bauleistungen.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
Als Teil unseres Engagements, eine Komplettlösung für alle Ihre Bau- und Hardware-Bedürfnisse bereitzustellen, sind wir bei ScrewFast stolz darauf, eine umfassende Palette professioneller Dienstleistungen anzubieten. Von den ersten Beratungsgesprächen bis hin zu abschließenden Inspektionen umfassen unsere vielseitigen Dienstleistungen die gesamte Projektarbeit und gewährleisten qualitativ hochwertige Ergebnisse und Kundenzufriedenheit. Dieser Abschnitt der Dokumentation wird Sie durch alles führen, was Sie wissen müssen, um unser Fachwissen optimal zu nutzen.
|
||||||
|
|
||||||
## Overview of Services
|
## Übersicht über die Dienstleistungen
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="Maßgeschneiderte Lösungen">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
Jedes Bauprojekt birgt seine eigenen Herausforderungen und Anforderungen. Bei ScrewFast passen wir unsere Dienstleistungen an Ihre spezifischen Bedürfnisse an, um sicherzustellen, dass unser Team unabhängig von der Größe oder Komplexität Ihres Projekts damit präzise und professionell umgehen kann.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="Experten-Team">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
Nutzen Sie das Know-how unseres kompetenten Personals, von Architekten und Ingenieuren bis hin zu qualifizierten Arbeitern, die jeweils ihr Fachwissen einbringen, um Ihre Vision zum Leben zu erwecken.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="Qualitätsverpflichtung">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
Qualität steht im Mittelpunkt unseres Handelns. Wir setzen strenge Qualitätskontrollmaßnahmen ein, um sicherzustellen, dass die von uns gelieferte Arbeit den Branchenstandards entspricht und diese sogar übertrifft.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="Laufende Unterstützung">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
Unsere Beziehung zu unseren Kunden endet nicht, sobald das Projekt abgeschlossen ist. Wir bieten kontinuierliche Unterstützung, um Probleme zu lösen und eine dauerhafte Zufriedenheit mit Ihrer Investition sicherzustellen.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
|
@ -23,15 +23,15 @@ Welcome to ScrewFast Docs! We're excited to help you get started with our premiu
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="ScrewDriver Set" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
Versatile and ergonomic, suitable for all screw types.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Learn More " href="en/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
Powerful performance for drilling and impact driving.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Learn More " href="en/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="Power Saws" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
Precision cutting with adjustable settings for various materials.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Learn More " href="en/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
|
@ -65,17 +65,17 @@ Regular maintenance ensures longevity and safety. Clean your tools after each us
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="In-depth Tutorials"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="Deep dive into using our tools with expert-led tutorials."
|
||||||
href="/guides/customization/"
|
href="en/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="Video Demos"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="Visual guides to get the most out of your tools."
|
||||||
href="/guides/customization/"
|
href="en/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="Warranty Information"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="Understand your coverage and how to make a claim if needed."
|
||||||
href="/guides/customization/"
|
href="en/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: Lista de Verificación del Primer Proyecto
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explora la documentación completa de ScrewFast para obtener una visión detallada de nuestras herramientas premium y servicios de construcción.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
|
@ -15,51 +15,50 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
Comenzar un nuevo proyecto puede ser emocionante y desafiante en igual medida. Con la preparación adecuada y orientación, tu empresa está lista para el éxito. La Lista de Verificación del Primer Proyecto de ScrewFast está diseñada para proporcionar un enfoque claro y estructurado para garantizar que estés bien preparado en cada paso del camino.
|
||||||
|
|
||||||
## Project Preparation
|
## Preparación del Proyecto
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="Alcance y Objetivos">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. Asegurar claridad sobre el alcance del proyecto, entregables y resultados deseados.
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. Definir objetivos claros y criterios de éxito para la finalización del proyecto.
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="Herramientas y Equipamiento">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. Hacer una lista de todas las herramientas y equipos de ScrewFast necesarios.
|
||||||
2. Verify inventory availability and condition before starting
|
2. Verificar la disponibilidad y condición del inventario antes de comenzar.
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="Organización de Servicios">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. Si se necesita experiencia adicional o mano de obra, organiza los servicios de construcción de ScrewFast con anticipación.
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. Aclarar los acuerdos de nivel de servicio y los plazos con tu representante de ScrewFast.
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## Ejecución del Proyecto
|
||||||
### Initial Phase
|
### Fase Inicial
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. Configurar el sitio del proyecto según las pautas de configuración de ScrewFast.
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. Realizar una reunión inicial de equipo para alinear los objetivos del proyecto y las metodologías de ScrewFast.
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. Establecer puntos de control y hitos del proyecto para evaluaciones regulares.
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
## Recursos Adicionales
|
||||||
## Additional Resources
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="Guías Detalladas"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="Accede a documentación detallada y manuales de usuario para herramientas y servicios de ScrewFast."
|
||||||
href="en/guides/getting-started"
|
href="es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="Contactos de Soporte"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="Mantén a mano los detalles de contacto para el soporte de ScrewFast, disponible para ayuda durante todo tu proyecto."
|
||||||
href="en/guides/getting-started"
|
href="es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="Aprendizaje Avanzado"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="Explora recursos educativos adicionales proporcionados por ScrewFast para refinar tus habilidades y conocimientos."
|
||||||
href="en/guides/getting-started"
|
href="es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: Comenzar
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explora la documentación completa de ScrewFast para obtener una visión detallada de nuestras herramientas premium y servicios de construcción.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,65 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
¡Bienvenido a ScrewFast Docs! Estamos emocionados de ayudarte a comenzar con nuestras herramientas premium. Esta guía está diseñada para presentarte nuestra gama de herramientas, ayudarte a comprender los conceptos básicos y ponerte al día para tu primer proyecto. ¡Sumérgete en el mundo de la artesanía de alta calidad y confiabilidad con ScrewFast!
|
||||||
|
|
||||||
## Tools Overview
|
## Descripción General de las Herramientas
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="Juego de Destornilladores" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
Versátiles y ergonómicos, adecuados para todo tipo de tornillos.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Aprende más" href="/es/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="Taladro Percutor" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
Rendimiento potente para perforación y conducción de impacto.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Aprende más" href="/es/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="Sierras Eléctricas" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
Corte preciso con ajustes ajustables para varios materiales.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="Aprende más" href="/es/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## Instrucciones de Configuración
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. Icono de Desempaque Desempaqueta tus Herramientas ScrewFast
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
Abre cuidadosamente el empaque y verifica que todas las piezas estén presentes. Familiarízate con la herramienta y cualquier accesorio.
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. Icono de Verificación de Seguridad Configuración Inicial y Verificaciones de Seguridad
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
Lee el manual de seguridad antes de manipular la herramienta. Verifica la herramienta en busca de cualquier daño durante el envío y asegúrate de que los protectores de seguridad estén en su lugar.
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. Icono de Calibración Calibración y Preparación para el Primer Uso
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
Sigue las instrucciones del fabricante para calibrar tus herramientas según sea necesario. Asegúrate de que las baterías estén cargadas o que las conexiones eléctricas estén seguras.
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## Limpieza y Mantenimiento
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
Siempre desconecta las herramientas antes de limpiarlas. Usa un paño suave y seco para limpiar el exterior y guárdalas en un lugar seco.
|
||||||
exterior and store in a dry place.
|
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
El mantenimiento regular garantiza longevidad y seguridad. Limpia tus herramientas después de cada uso, verifica el desgaste y lubrica las piezas móviles según lo especificado en el manual de la herramienta.
|
||||||
|
|
||||||
## Additional Resources
|
## Recursos Adicionales
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="Tutoriales Detallados"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="Sumérgete en el uso de nuestras herramientas con tutoriales dirigidos por expertos."
|
||||||
href="/guides/customization/"
|
href="/es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="Demostraciones en Video"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="Guías visuales para sacar el máximo provecho de tus herramientas."
|
||||||
href="/guides/customization/"
|
href="/es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="Información de Garantía"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="Comprende tu cobertura y cómo hacer una reclamación si es necesario."
|
||||||
href="/guides/customization/"
|
href="/es/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: Introducción a los Servicios de ScrewFast
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explora la documentación completa de ScrewFast para obtener una visión detallada de nuestras herramientas premium y servicios de construcción.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
Como parte de nuestro compromiso de proporcionar una solución integral para todas sus necesidades de construcción y hardware, en ScrewFast nos enorgullecemos de ofrecer una amplia gama de servicios profesionales. Desde consultas iniciales hasta inspecciones finales, nuestros servicios multifacéticos abarcan la totalidad de su proyecto, garantizando resultados de calidad y satisfacción del cliente. Esta sección de la documentación le guiará a través de todo lo que necesita saber para aprovechar al máximo nuestra experiencia.
|
||||||
|
|
||||||
## Overview of Services
|
## Visión general de los Servicios
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="Soluciones Personalizadas">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
Cada proyecto de construcción conlleva sus desafíos y demandas únicas. En ScrewFast, personalizamos nuestros servicios para satisfacer sus necesidades específicas, asegurando que, independientemente de la escala o complejidad de su proyecto, nuestro equipo esté equipado para manejarlo con precisión y profesionalismo.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="Equipo Experto">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
Aproveche las habilidades de nuestro personal experimentado, desde arquitectos e ingenieros hasta obreros calificados, cada uno contribuyendo con su experiencia para dar vida a su visión.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="Compromiso con la Calidad">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
La calidad está en el corazón de todo lo que hacemos. Implementamos rigurosas medidas de control de calidad para asegurar que el trabajo que entregamos cumpla y supere los estándares de la industria.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="Soporte Continuo">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
Nuestra relación con nuestros clientes no termina una vez que se completa el proyecto. Brindamos apoyo continuo para abordar cualquier problema y garantizar una satisfacción duradera con su inversión.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: چک لیست اولین پروژه
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: مستندات جامع ScrewFast را بررسی کنید تا به طور کامل به ابزارها و خدمات ساخت و ساز ویژه ما نگاه کنید.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
|
@ -15,51 +15,50 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
شروع یک پروژه جدید ممکن است هم به اندازهای هیجانانگیز و هم چالش برانگیز باشد. با آمادهسازی و هدایت مناسب، پروژه شما برای موفقیت آماده است. چک لیست اولین پروژه ScrewFast طراحی شده است تا یک رویکرد واضح و ساختارمند را برای اطمینان از آمادگی خود در هر مرحله ارائه دهد.
|
||||||
|
|
||||||
## Project Preparation
|
## آمادهسازی پروژه
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="دامنه و اهداف">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. اطمینان از وضوح دامنه پروژه، خروجیها و نتایج مورد نظر
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. تعریف اهداف روشن و شاخصهای موفقیت برای اتمام پروژه
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="ابزارها و تجهیزات">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. تهیه لیستی از تمامی ابزارها و تجهیزات مورد نیاز ScrewFast
|
||||||
2. Verify inventory availability and condition before starting
|
2. بررسی دسترسی و شرایط موجودی قبل از شروع
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="مرتبسازی خدمات">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. در صورت نیاز به تخصص یا نیروی انسانی اضافی، برنامهریزی خدمات ساخت و ساز ScrewFast را به صورت پیشگامانه انجام دهید
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. ابهامات توافقنامههای سطح خدمات و زمانبندی را با نماینده ScrewFast خود روشن کنید
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## اجرای پروژه
|
||||||
### Initial Phase
|
### فاز اولیه
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. سایت پروژه را براساس راهنمای تنظیم ScrewFast راهاندازی کنید
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. یک جلسه اولیه تیم برگزار کنید تا در مورد اهداف پروژه و روشهای ScrewFast هماهنگ شوید
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. نقاط کنترل و مراحل مهم پروژه را برای ارزیابی منظم تعیین کنید
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
## منابع اضافی
|
||||||
## Additional Resources
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="آموزشهای عمیق"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="عمق به راهنمایی در استفاده از ابزارها و خدمات ما با آموزشهای تخصصی."
|
||||||
href="en/guides/getting-started"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="ویدیوهای دمو"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="راهنماییهای تصویری برای بهرهبرداری بهتر از ابزارهای ما."
|
||||||
href="en/guides/getting-started"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="اطلاعات گارانتی"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="پوشش خود را درک کنید و چگونگی ارائه ادعا را در صورت نیاز بفهمید."
|
||||||
href="en/guides/getting-started"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: شروع کار
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: مستندات جامع ScrewFast را برای دیدن کامل و جامع ابزارها و خدمات ساخت و ساز ویژه ما بررسی کنید.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,65 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
به مستندات ScrewFast خوش آمدید! ما بسیار هیجان زده هستیم که به شما کمک کنیم تا با ابزارهای ویژه ما آشنا شوید. این راهنما برای معرفی مجموعه ابزار ما طراحی شده است، به شما درک مفاهیم اصلی را میدهد و شما را برای اولین پروژه خود آماده میکند. بگذارید با ScrewFast وارد دنیای کیفیت بالا و صداقت قابل اعتماد شویم.
|
||||||
|
|
||||||
## Tools Overview
|
## مروری بر ابزارها
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="مجموعه پیچ گوشتی" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
چندمنظوره و ارگونومیک، مناسب برای تمام انواع پیچ.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="بیشتر بدانید " href="fa/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="دریل سنگین" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
عملکرد قدرتمند برای حفاری و اثر گذاری.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="بیشتر بدانید " href="fa/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="پازل برقی" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
برش دقیق با تنظیمات قابل تنظیم برای مواد مختلف.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="بیشتر بدانید " href="fa/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## دستورالعمل نصب
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. آیکون باز کردن جعبه باز کردن ابزارهای ScrewFast خود
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
بستهبندی را با دقت باز کنید و از حضور تمام اجزای مطمئن شوید. با ابزار و لوازم جانبی آشنا شوید.
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. آیکون بررسی ایمنی راه اندازی اولیه و بررسیهای ایمنی
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
قبل از دسترسی به ابزار، دفترچه راهنمای ایمنی را بخوانید. ابزار را برای هر گونه آسیب حمل و نقل بررسی کنید و از وجود محافظتهای ایمنی اطمینان حاصل کنید.
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. آیکون کالیبراسیون و آمادهسازی برای استفاده اولیه
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
دستورالعملهای سازنده را برای کالیبراسیون ابزارهای خود به عنوان لازم اجرا کنید. اطمینان حاصل کنید که باتریها شارژ شدهاند یا اتصالات الکتریکی ایمن هستند.
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## تمیز کردن و نگهداری
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
همیشه ابزارها را قبل از تمیز کردن با کشمش خامه ای خام استفاده کنید. از نمد نرم و خشک برای پاک کردن بیرونی استفاده کنید و در محل خشک نگه دارید.
|
||||||
exterior and store in a dry place.
|
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
نگهداری منظم برای طولانی مدت و ایمنی اهمیت دارد. ابزارهای خود را پس از هر استفاده تمیز کنید، برای ساییدگی بررسی کنید و قطعات متحرک را مانند دستورالعمل ابزار روغن کنید.
|
||||||
|
|
||||||
## Additional Resources
|
## منابع اضافی
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="آموزشهای عمیق"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="با آموزشهای تخصصی و متخصصانه به استفاده از ابزارهای ما فرو میبرید."
|
||||||
href="/guides/customization/"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="ویدیوهای دمو"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="راهنماییهای تصویری برای بهرهبرداری بیشتر از ابزارهای ما."
|
||||||
href="/guides/customization/"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="اطلاعات گارانتی"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="پوشش خود را درک کنید و چگونگی ارائه ادعا را در صورت نمورد نیاز را بیابید."
|
||||||
href="/guides/customization/"
|
href="fa/guides/getting-started"
|
||||||
/>
|
/>
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: معرفی به خدمات اسکروفست
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: مستندات جامع اسکروفست را برای بررسی دقیقتر ابزارها و خدمات ساخت و ساز بررسی کنید.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
به عنوان بخشی از تعهد ما به ارائه یک راهحل از ابتدا تا انتها برای همه نیازهای ساخت و ساز و سختافزار شما، ما در اسکروفست به افتخار یک سری خدمات حرفهای جامع ارائه میدهیم. از مشاورههای ابتدایی تا بازرسیهای نهایی، خدمات چندگانه ما شامل کلیه جنبههای پروژه شما را در بر میگیرد و اطمینان از نتایج با کیفیت و رضایت مشتری را فراهم میکند. این بخش از مستندات شما را از همه چیزی که باید بدانید برای بهرهگیری از تخصص ما به حداکثر برساند.
|
||||||
|
|
||||||
## Overview of Services
|
## مروری بر خدمات
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="راهحلهای سفارشی">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
هر پروژه ساخت و ساز چالشها و اقتضاهای منحصربهفرد خود را دارد. در اسکروفست، ما خدمات خود را به منظور تطبیق با نیازهای خاص شما سفارشیسازی میکنیم، تضمین میکنیم که مهمانه مقیاس یا پیچیدگی پروژه شما با دقت و حرفهایترین نیروهای ما مدیریت شود.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="تیم متخصص">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
از مهارتهای کارکنان ما با تجربه استفاده کنید، از معماران و مهندسان تا کارگران ماهر، هر کدام به تجربه خود به منظور برگرداندن دیدگاه شما به واقعیت کمک میکنند.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="تعهد به کیفیت">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
کیفیت در مرکز تمام اعمال ما قرار دارد. ما اقدامات سختگیرانه کنترل کیفیت را برای اطمینان از اینکه کاری که ارائه میدهیم با استانداردهای صنعتی مطابقت دارد و آن را بیشتر میکند.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="پشتیبانی مداوم">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
رابطه ما با مشتریان ما پس از اتمام پروژه به پایان نمیرسد. ما پشتیبانی مداوم را برای حل هرگونه مشکل و اطمینان از رضایت دائمی از سرمایهاینستمان فراهم میکنیم.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: Liste de vérification du premier projet
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explorez la documentation complète de ScrewFast pour un examen approfondi de nos outils haut de gamme et services de construction.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
|
@ -15,51 +15,51 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
Se lancer dans un nouveau projet peut être à la fois excitant et stimulant. Avec la bonne préparation et orientation, votre entreprise est prête pour le succès. La Liste de vérification du premier projet de ScrewFast est conçue pour fournir une approche claire et structurée afin de vous assurer que vous êtes bien préparé à chaque étape du processus.
|
||||||
|
|
||||||
## Project Preparation
|
## Préparation du projet
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="Portée et objectifs">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. Assurez-vous de la clarté de la portée du projet, des livrables et des résultats souhaités
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. Définissez des objectifs clairs et des critères de réussite pour l'achèvement du projet
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="Outils et équipement">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. Faites une liste de tous les outils et équipements ScrewFast nécessaires
|
||||||
2. Verify inventory availability and condition before starting
|
2. Vérifiez la disponibilité de l'inventaire et son état avant de commencer
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="Organisation des services">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. Si une expertise supplémentaire ou une main-d'œuvre est nécessaire, organisez les services de construction ScrewFast à l'avance
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. Clarifiez les accords de niveau de service et les délais avec votre représentant ScrewFast
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## Exécution du projet
|
||||||
### Initial Phase
|
### Phase initiale
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. Configurez le site du projet selon les directives de configuration de ScrewFast
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. Organisez une réunion initiale d'équipe pour aligner les objectifs du projet et les méthodologies ScrewFast
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. Établissez des points de contrôle et des jalons du projet pour des évaluations régulières
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Additional Resources
|
## Ressources supplémentaires
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="Guides détaillés"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="Accédez à une documentation approfondie et aux manuels d'utilisation des outils et services ScrewFast."
|
||||||
href="en/guides/getting-started"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="Contacts de support"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="Gardez à portée de main les coordonnées du support ScrewFast, disponible pour vous aider tout au long de votre projet."
|
||||||
href="en/guides/getting-started"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="Apprentissage avancé"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="Explorez d'autres ressources éducatives fournies par ScrewFast pour affiner vos compétences et vos connaissances."
|
||||||
href="en/guides/getting-started"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: Démarrage
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explorez la documentation complète de ScrewFast pour un examen approfondi de nos outils haut de gamme et services de construction.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,65 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
Bienvenue dans les Docs ScrewFast ! Nous sommes ravis de vous aider à démarrer avec nos outils haut de gamme. Ce guide est conçu pour vous présenter notre gamme d'outils, vous aider à comprendre les bases et vous préparer pour votre premier projet. Plongeons directement dans le monde de l'artisanat fiable et de haute qualité avec ScrewFast.
|
||||||
|
|
||||||
## Tools Overview
|
## Aperçu des outils
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="Ensemble de tournevis" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
Polyvalent et ergonomique, adapté à tous les types de vis.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="En savoir plus " href="fr/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="Perceuse à percussion" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
Performances puissantes pour le perçage et l'impact.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="En savoir plus " href="fr/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="Scies électriques" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
Découpe précise avec des réglages ajustables pour divers matériaux.
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="En savoir plus " href="fr/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## Instructions de configuration
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. Icône de déballage Déballez vos outils ScrewFast
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
Ouvrez soigneusement l'emballage et vérifiez que tous les composants sont présents. Familiarisez-vous avec l'outil et ses accessoires éventuels.
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. Icône de vérification de sécurité Configuration initiale et vérifications de sécurité
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
Lisez le manuel de sécurité avant de manipuler l'outil. Vérifiez l'outil pour tout dommage dû à l'expédition et assurez-vous que les dispositifs de sécurité sont en place.
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. Icône de calibrage Calibrage et préparation pour la première utilisation
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
Suivez les instructions du fabricant pour calibrer vos outils si nécessaire. Assurez-vous que les batteries sont chargées ou que les connexions électriques sont sécurisées.
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## Nettoyage et Entretien
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
Débranchez toujours les outils avant de les nettoyer. Utilisez un chiffon doux et sec pour essuyer l'extérieur et rangez-les dans un endroit sec.
|
||||||
exterior and store in a dry place.
|
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
Un entretien régulier assure la longévité et la sécurité. Nettoyez vos outils après chaque utilisation, vérifiez l'usure et lubrifiez les pièces mobiles comme spécifié dans le manuel de l'outil.
|
||||||
|
|
||||||
## Additional Resources
|
## Ressources supplémentaires
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="Tutoriels approfondis"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="Approfondissez l'utilisation de nos outils avec des tutoriels animés par des experts."
|
||||||
href="/guides/customization/"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="Démos vidéo"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="Guides visuels pour tirer le meilleur parti de vos outils."
|
||||||
href="/guides/customization/"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="Informations sur la garantie"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="Comprenez votre couverture et comment faire une réclamation si nécessaire."
|
||||||
href="/guides/customization/"
|
href="fr/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: Introduction aux Services ScrewFast
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: Explorez la documentation complète de ScrewFast pour un examen approfondi de nos outils haut de gamme et services de construction.
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
Dans le cadre de notre engagement à fournir une solution de bout en bout pour tous vos besoins en construction et matériel, nous, chez ScrewFast, sommes fiers de proposer une suite complète de services professionnels. Des consultations initiales aux inspections finales, nos services polyvalents englobent l'intégralité de votre projet, garantissant des résultats de qualité et la satisfaction du client. Cette section de la documentation vous guidera à travers tout ce que vous devez savoir pour exploiter pleinement notre expertise.
|
||||||
|
|
||||||
## Overview of Services
|
## Aperçu des Services
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="Solutions sur Mesure">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
Chaque projet de construction comporte ses propres défis et exigences. Chez ScrewFast, nous personnalisons nos services pour correspondre à vos besoins spécifiques, garantissant que, quelle que soit l'échelle ou la complexité de votre projet, notre équipe est équipée pour le gérer avec précision et professionnalisme.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="Équipe d'Experts">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
Tire parti des compétences de notre personnel qualifié, des architectes et ingénieurs aux ouvriers qualifiés, chacun contribuant à apporter leur expertise pour donner vie à votre vision.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="Engagement envers la Qualité">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
La qualité est au cœur de tout ce que nous faisons. Nous mettons en œuvre des mesures rigoureuses de contrôle de qualité pour garantir que le travail que nous livrons répond et dépasse les normes de l'industrie.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="Support Continu">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
Notre relation avec nos clients ne se termine pas une fois le projet terminé. Nous fournissons un support continu pour résoudre tout problème et garantir une satisfaction durable avec votre investissement.
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: ファーストプロジェクトチェックリスト
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: ScrewFastの包括的なドキュメントを探索して、プレミアムツールと建設サービスを詳しく見てください。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
|
@ -15,51 +15,51 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
新しいプロジェクトに着手することは、興奮と挑戦の両方が同じ程度であり得ます。適切な準備とガイダンスがあれば、貴社の事業は成功する準備が整っています。ScrewFastのファーストプロジェクトチェックリストは、段階を踏んだ明確で構造化されたアプローチを提供するよう設計されています。
|
||||||
|
|
||||||
## Project Preparation
|
## プロジェクト準備
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="スコープと目標">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. プロジェクトのスコープ、成果物、および希望される成果の明確さを確保する
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. プロジェクト完了のための明確な目標と成功基準を定義する
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="ツールと機器">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. 必要なすべてのScrewFastツールと機器のリストを作成する
|
||||||
2. Verify inventory availability and condition before starting
|
2. 開始前に在庫の可用性と状態を確認する
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="サービスの手配">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. 追加の専門知識や労働力が必要な場合は、事前にScrewFast建設サービスを手配する
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. あなたのScrewFast代表者とのサービスレベル契約とタイムラインを明確にする
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## プロジェクトの実行
|
||||||
### Initial Phase
|
### 初期フェーズ
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. ScrewFastの設定ガイドラインに従ってプロジェクトサイトを設定する
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. プロジェクトの目標とScrewFastの方法論を合わせるための初期チームミーティングを実施する
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. 定期的な評価のためのプロジェクトのチェックポイントとマイルストーンを設定する
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Additional Resources
|
## その他のリソース
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="詳細なガイド"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="ScrewFastツールとサービスの詳細なドキュメントとユーザーマニュアルにアクセスします。"
|
||||||
href="en/guides/getting-started"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="サポート連絡先"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="プロジェクト全体で利用可能なScrewFastサポートの連絡先の詳細を手元に保管してください。"
|
||||||
href="en/guides/getting-started"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="高度な学習"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="ScrewFastが提供するさらなる教育リソースを探索して、スキルと知識を磨きます。"
|
||||||
href="en/guides/getting-started"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: 入門
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: ScrewFastの包括的なドキュメントを探索して、プレミアムツールと建設サービスを詳しく見てください。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,65 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
ScrewFast Docsへようこそ!私たちは、プレミアムツールでのスタートをお手伝いできることを楽しみにしています。このガイドは、私たちのツールの範囲を紹介し、基本を理解し、最初のプロジェクトに備えるための設計されています。ScrewFastとともに、高品質で信頼性の高い技術の世界に飛び込みましょう。
|
||||||
|
|
||||||
## Tools Overview
|
## ツールの概要
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="スクリュードライバーセット" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
多目的でエルゴノミックで、すべてのねじに適しています。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="詳細はこちら " href="ja/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="ハンマードリル" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
ドリルとインパクトドライブのためのパワフルな性能。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="詳細はこちら " href="ja/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="電動ノコギリ" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
各種材料に対応した可変設定での精密な切断。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="詳細はこちら " href="ja/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## 設定手順
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. アンボックスアイコン ScrewFastのツールをアンボックスする
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
慎重にパッケージを開封し、すべてのコンポーネントが揃っていることを確認してください。ツールとアクセサリーに慣れてください。
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. セーフティチェックアイコン 初期設定と安全チェック
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
ツールを取り扱う前に安全マニュアルを読みます。ツールに配送時の損傷がないか確認し、安全ガードが取り付けられていることを確認してください。
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. キャリブレーションアイコン キャリブレーションと初使用の準備
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
必要に応じて、製造元の指示に従ってツールのキャリブレーションを行います。バッテリーが充電されているか、電気接続が確実に接続されているか確認してください。
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## 清掃とメンテナンス
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
清掃前に常にツールの電源を切ってください。柔らかい乾いた布で外部を拭き取り、乾燥した場所に保管してください。
|
||||||
exterior and store in a dry place.
|
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
定期的なメンテナンスは、寿命と安全性を確保します。各使用後にツールを清掃し、摩耗のチェックを行い、ツールのマニュアルで指定された通りに動く部品に潤滑油を塗布してください。
|
||||||
|
|
||||||
## Additional Resources
|
## その他のリソース
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="詳細なチュートリアル"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="専門家によるチュートリアルでツールの使用法を詳しく学びます。"
|
||||||
href="/guides/customization/"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="ビデオデモ"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="ツールを最大限に活用するためのビジュアルガイド。"
|
||||||
href="/guides/customization/"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="保証情報"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="保証範囲と必要に応じて請求方法を理解します。"
|
||||||
href="/guides/customization/"
|
href="ja/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: はじめに
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: ScrewFastの包括的なドキュメントを探索して、プレミアムツールと建設サービスを詳しく見てください。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
私たちの建設およびハードウェアニーズに対するエンドツーエンドのソリューションを提供することへの取り組みの一環として、ScrewFastは、プロフェッショナルなサービスの包括的なスイートを提供することを誇りに思っています。初回の相談から最終検査まで、私たちの多面的なサービスは、あなたのプロジェクト全体を包括し、品質の結果と顧客満足を保証します。このドキュメントのこのセクションでは、私たちの専門知識を最大限に活用するために知っておく必要があるすべてのことを案内します。
|
||||||
|
|
||||||
## Overview of Services
|
## サービスの概要
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="カスタマイズされたソリューション">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
各建設プロジェクトには独自の課題と要求があります。ScrewFastでは、サービスをカスタマイズして、プロジェクトのスケールや複雑さに関係なく、チームが正確かつプロフェッショナルに対応できるようにします。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="専門チーム">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
私たちの知識豊富なスタッフ、建築家からエンジニアまで、各々が専門知識を活かし、あなたのビジョンを実現します。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="品質へのコミットメント">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
品質は私たちのすべての活動の中心にあります。私たちは厳格な品質管理策を採用して、提供する作業が業界基準を満たし、それを上回ることを保証します。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="継続的なサポート">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
プロジェクトが完了したら、私たちとの関係は終わりません。問題を解決し、あなたの投資に対する持続的な満足を保証するために、継続的なサポートを提供します。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
---
|
---
|
||||||
title: First Project Checklist
|
title: 第一个项目清单
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: 探索 ScrewFast 的全面文档,深入了解我们的优质工具和建筑服务。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: First Project Checklist
|
label: First Project Checklist
|
||||||
order: 3
|
order: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
CardGrid,
|
CardGrid,
|
||||||
|
@ -15,51 +16,51 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Embarking on a new project can be exciting and challenging in equal measure. With the right preparation and guidance, your venture is poised for success. The ScrewFast First Project Checklist is designed to provide a clear and structured approach to ensure you're well-prepared every step of the way.
|
开始新项目既令人兴奋又具有挑战性。通过正确的准备和指导,您的冒险将更有成功的可能性。ScrewFast 第一个项目清单旨在提供清晰和结构化的方法,以确保您在每一步都做好了充分的准备。
|
||||||
|
|
||||||
## Project Preparation
|
## 项目准备
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="Scope and Objectives">
|
<Card title="范围和目标">
|
||||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
1. 确保项目的范围、交付内容和期望结果清晰明确
|
||||||
2. Define clear objectives and success criteria for project completion
|
2. 为项目完成明确定义清晰的目标和成功标准
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Tools and Equipment">
|
<Card title="工具和设备">
|
||||||
1. Make a list of all required ScrewFast tools and equipment
|
1. 列出所有需要的 ScrewFast 工具和设备
|
||||||
2. Verify inventory availability and condition before starting
|
2. 在开始之前确认库存的可用性和状态
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Arranging Services">
|
<Card title="安排服务">
|
||||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
1. 如果需要额外的专业知识或人力,请提前安排 ScrewFast 建筑服务
|
||||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
2. 与您的 ScrewFast 代表明确服务级别协议和时间表
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Project Execution
|
## 项目执行
|
||||||
### Initial Phase
|
### 初始阶段
|
||||||
<Steps>
|
<Steps>
|
||||||
1. Set up the project site according to ScrewFast setup guidelines
|
1. 根据 ScrewFast 设置指南设置项目现场
|
||||||
|
|
||||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
2. 召开初始团队会议,就项目目标和 ScrewFast 方法达成一致
|
||||||
|
|
||||||
3. Establish project checkpoints and milestones for regular assessment
|
3. 建立项目检查点和里程碑,定期进行评估
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Additional Resources
|
## 额外资源
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Detailed Guides"
|
title="详细指南"
|
||||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
description="访问 ScrewFast 工具和服务的深度文档和用户手册。"
|
||||||
href="en/guides/getting-started"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Support Contacts"
|
title="支持联系人"
|
||||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
description="保持 ScrewFast 支持的联系人详细信息,可在项目期间提供帮助。"
|
||||||
href="en/guides/getting-started"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Advanced Learning"
|
title="高级学习"
|
||||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
description="探索 ScrewFast 提供的进一步教育资源,以完善您的技能和知识基础。"
|
||||||
href="en/guides/getting-started"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Getting Started
|
title: 入门指南
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: 探索 ScrewFast 的全面文档,深入了解我们的优质工具和建筑服务。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Getting Started
|
label: Getting Started
|
||||||
order: 1
|
order: 1
|
||||||
|
@ -16,66 +16,65 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
Welcome to ScrewFast Docs! We're excited to help you get started with our premium tools. This guide is designed to introduce you to our tool range, help you understand the basics, and get you up to speed for your first project. Let's jump right into the world of high-quality, reliable craftsmanship with ScrewFast.
|
欢迎来到 ScrewFast 文档!我们很高兴能帮助您开始使用我们的优质工具。本指南旨在介绍我们的工具范围,帮助您了解基础知识,并为您的第一个项目做好准备。让我们立即进入高质量、可靠的工艺世界,与 ScrewFast 一起。
|
||||||
|
|
||||||
## Tools Overview
|
## 工具概述
|
||||||
|
|
||||||
<CardGrid>
|
<CardGrid>
|
||||||
<Card title="ScrewDriver Set" icon="seti:config">
|
<Card title="螺丝刀套装" icon="seti:config">
|
||||||
Versatile and ergonomic, suitable for all screw types.
|
多功能且符合人体工程学设计,适用于各种螺丝类型。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="了解更多 " href="zh-cn/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
<Card title="电钻锤" icon="seti:pipeline">
|
||||||
Powerful performance for drilling and impact driving.
|
强大的钻孔和冲击驱动性能。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="了解更多 " href="zh-cn/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
<Card title="Power Saws" icon="seti:crystal">
|
<Card title="电动锯" icon="seti:crystal">
|
||||||
Precision cutting with adjustable settings for various materials.
|
可调节设置,精准切割各种材料。
|
||||||
<LinkCard title="Learn More " href="/en/index/" />
|
<LinkCard title="了解更多 " href="zh-cn/guides/getting-started" />
|
||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Setup Instructions
|
## 设置说明
|
||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
|
|
||||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
1. 解包图标 打开 ScrewFast 工具包
|
||||||
Carefully open the packaging and verify all components are present. Familiarize yourself with the tool and any accessories.
|
小心打开包装,并确认所有零件齐全。熟悉工具及任何附件。
|
||||||
|
|
||||||
2. Safety Check Icon Initial Setup and Safety Checks
|
2. 安全检查图标 初始设置和安全检查
|
||||||
Read the safety manual before handling the tool. Check the tool for any shipping damage and ensure safety guards are in place.
|
在处理工具之前阅读安全手册。检查工具是否有运输损坏,并确保安全保护装置已安装到位。
|
||||||
|
|
||||||
3. Calibration Icon Calibration and Preparation for First Use
|
3. 校准图标 校准和准备首次使用
|
||||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
按照制造商的说明校准您的工具。确保电池已充电或电气连接安全可靠。
|
||||||
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
|
|
||||||
## Cleaning and Maintenance
|
## 清洁和维护
|
||||||
|
|
||||||
<Aside type="tip">
|
<Aside type="tip">
|
||||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
清洁前务必拔掉工具插头。使用软、干的布擦拭外部,并存放在干燥的地方。
|
||||||
exterior and store in a dry place.
|
|
||||||
</Aside>
|
</Aside>
|
||||||
|
|
||||||
Regular maintenance ensures longevity and safety. Clean your tools after each use, check for wear, and lubricate moving parts as specified in the tool's manual.
|
定期维护可确保工具的长期使用和安全性。每次使用后清洁工具,检查磨损,并按照工具手册中规定的方式润滑移动部件。
|
||||||
|
|
||||||
## Additional Resources
|
## 额外资源
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="In-depth Tutorials"
|
title="深入教程"
|
||||||
description="Deep dive into using our tools with expert-led tutorials."
|
description="深入了解如何使用我们的工具,由专家提供教程。"
|
||||||
href="/guides/customization/"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Video Demos"
|
title="视频演示"
|
||||||
description="Visual guides to get the most out of your tools."
|
description="视觉指南,帮助您充分利用我们的工具。"
|
||||||
href="/guides/customization/"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinkCard
|
<LinkCard
|
||||||
title="Warranty Information"
|
title="保修信息"
|
||||||
description="Understand your coverage and how to make a claim if needed."
|
description="了解您的保修范围,以及如何提出索赔。"
|
||||||
href="/guides/customization/"
|
href="zh-cn/guides/getting-started"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Introduction to ScrewFast Services
|
title: ScrewFast 服务介绍
|
||||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
description: 探索 ScrewFast 的全面文档,深入了解我们的优质工具和建筑服务。
|
||||||
sidebar:
|
sidebar:
|
||||||
label: Introduction to Services
|
label: Introduction to Services
|
||||||
order: 2
|
order: 2
|
||||||
|
@ -11,21 +11,21 @@ import {
|
||||||
TabItem,
|
TabItem,
|
||||||
} from "@astrojs/starlight/components";
|
} from "@astrojs/starlight/components";
|
||||||
|
|
||||||
As part of our commitment to providing an end-to-end solution for all your construction and hardware needs, we at ScrewFast are proud to offer a comprehensive suite of professional services. From initial consultations to final inspections, our multifaceted services encompass the entirety of your project, ensuring quality results and client satisfaction. This section of the documentation will guide you through everything you need to know to leverage our expertise to its fullest potential.
|
作为我们致力于为您的所有建筑和硬件需求提供端到端解决方案的一部分,我们在 ScrewFast 自豪地提供一套全面的专业服务。从最初的咨询到最终的验收,我们多方位的服务涵盖了您项目的全部,确保质量的结果和客户满意度。本文档的本节将指导您了解如何充分利用我们的专业知识。
|
||||||
|
|
||||||
## Overview of Services
|
## 服务概述
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<TabItem label="Tailored Solutions">
|
<TabItem label="定制解决方案">
|
||||||
Each construction project carries its unique challenges and demands. At ScrewFast, we customize our services to match your specific needs, ensuring that no matter the scale or complexity of your project, our team is equipped to handle it with precision and professionalism.
|
每个建筑项目都带来了独特的挑战和需求。在 ScrewFast,我们定制我们的服务以满足您的特定需求,确保无论您的项目规模或复杂程度如何,我们的团队都能以精确和专业的方式处理。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Expert Team">
|
<TabItem label="专业团队">
|
||||||
Leverage the skills of our knowledgeable staff, from architects and engineers to skilled laborers, each contributing their expertise to bring your vision to life.
|
利用我们熟练员工的技能,从建筑师和工程师到熟练的劳动者,每个人都为将您的愿景变为现实做出了贡献。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Commitment to Quality">
|
<TabItem label="质量承诺">
|
||||||
Quality is at the heart of everything we do. We employ stringent quality control measures to assure that the work we deliver meets and exceeds industry standards.
|
质量是我们做的一切的核心。我们采用严格的质量控制措施,确保我们交付的工作符合甚至超出行业标准。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem label="Ongoing Support">
|
<TabItem label="持续支持">
|
||||||
Our relationship with our clients doesn't end once the project is completed. We provide continuous support to address any issues and ensure lasting satisfaction with your investment.
|
我们与客户的关系在项目完成后并不结束。我们提供持续支持,以解决任何问题,并确保您对投资的持久满意度。
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<svg viewBox="0 0 275 104" width="275" height="104" fill="none" style="height: 1.5rem;" xmlns="http://www.w3.org/2000/svg">
|
<svg viewBox="0 0 275 104" width="275" height="104" fill="none" style="height: 1.5rem; margin-bottom: 0.2rem;" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path d="M69.312 69.616C69.312 79.1733 65.984 87.28 59.328 93.936C52.7573 100.592 44.6933 103.92 35.136 103.92C25.4933 103.92 17.344 100.635 10.688 94.064C4.11733 87.408 0.832001 79.2587 0.832001 69.616C0.832001 60.0587 4.16 51.9947 10.816 45.424C17.472 38.768 25.5787 35.44 35.136 35.44C41.1947 35.44 46.8267 36.9333 52.032 39.92V0.623993H69.312V69.616ZM52.032 69.616C52.032 65.008 50.368 61.04 47.04 57.712C43.712 54.384 39.744 52.72 35.136 52.72C30.4427 52.72 26.432 54.384 23.104 57.712C19.776 60.9547 18.112 64.9227 18.112 69.616C18.112 74.3093 19.776 78.32 23.104 81.648C26.432 84.976 30.4427 86.64 35.136 86.64C39.8293 86.64 43.7973 84.976 47.04 81.648C50.368 78.32 52.032 74.3093 52.032 69.616ZM146.562 69.616C146.562 79.1733 143.234 87.28 136.578 93.936C130.007 100.592 121.943 103.92 112.386 103.92C102.743 103.92 94.594 100.635 87.938 94.064C81.3673 87.408 78.082 79.2587 78.082 69.616C78.082 60.0587 81.41 51.9947 88.066 45.424C94.722 38.768 102.829 35.44 112.386 35.44C121.943 35.44 130.007 38.768 136.578 45.424C143.234 51.9947 146.562 60.0587 146.562 69.616ZM129.282 69.616C129.282 65.008 127.618 61.04 124.29 57.712C120.962 54.384 116.994 52.72 112.386 52.72C107.693 52.72 103.682 54.384 100.354 57.712C97.026 60.9547 95.362 64.9227 95.362 69.616C95.362 74.3093 97.026 78.32 100.354 81.648C103.682 84.976 107.693 86.64 112.386 86.64C117.079 86.64 121.047 84.976 124.29 81.648C127.618 78.32 129.282 74.3093 129.282 69.616ZM213.566 94.32C206.91 100.72 199.017 103.92 189.886 103.92C180.243 103.92 172.094 100.635 165.438 94.064C158.867 87.408 155.582 79.2587 155.582 69.616C155.582 60.0587 158.91 51.9947 165.566 45.424C172.222 38.768 180.329 35.44 189.886 35.44C198.59 35.44 206.185 38.384 212.67 44.272L202.302 58.224C198.974 54.5547 194.835 52.72 189.886 52.72C185.193 52.72 181.182 54.384 177.854 57.712C174.526 60.9547 172.862 64.9227 172.862 69.616C172.862 74.3093 174.526 78.32 177.854 81.648C181.182 84.976 185.193 86.64 189.886 86.64C195.006 86.64 199.23 84.6773 202.558 80.752L213.566 94.32ZM274.05 82.416C274.05 86.512 272.685 90.224 269.954 93.552C264.493 100.208 256.727 103.408 246.658 103.152C242.647 103.067 238.253 102.171 233.474 100.464C228.781 98.7573 224.941 96.624 221.954 94.064L231.554 81.648C236.162 86 241.069 88.176 246.274 88.176H246.658C248.791 88.176 250.711 87.792 252.418 87.024C254.637 86 255.746 84.5493 255.746 82.672V82.16C255.49 80.1973 254.167 78.7893 251.778 77.936C250.839 77.7653 248.834 77.3813 245.762 76.784C241.922 76.016 238.679 75.0773 236.034 73.968C228.269 70.64 224.386 64.7947 224.386 56.432C224.386 48.4107 228.354 42.3947 236.29 38.384C239.789 36.592 243.586 35.6533 247.682 35.568C251.949 35.4827 256.386 36.208 260.994 37.744C266.285 39.536 270.039 41.8827 272.258 44.784L260.738 55.152C257.751 52.1653 254.509 50.672 251.01 50.672C245.549 50.672 242.818 52.464 242.818 56.048V56.304C242.818 58.0107 245.037 59.4613 249.474 60.656C249.815 60.7413 252.631 61.296 257.922 62.32C268.674 64.368 274.05 70.9387 274.05 82.032V82.416Z" class="docs-logo-svg" fill="#404040"/>
|
<path d="M69.312 69.616C69.312 79.1733 65.984 87.28 59.328 93.936C52.7573 100.592 44.6933 103.92 35.136 103.92C25.4933 103.92 17.344 100.635 10.688 94.064C4.11733 87.408 0.832001 79.2587 0.832001 69.616C0.832001 60.0587 4.16 51.9947 10.816 45.424C17.472 38.768 25.5787 35.44 35.136 35.44C41.1947 35.44 46.8267 36.9333 52.032 39.92V0.623993H69.312V69.616ZM52.032 69.616C52.032 65.008 50.368 61.04 47.04 57.712C43.712 54.384 39.744 52.72 35.136 52.72C30.4427 52.72 26.432 54.384 23.104 57.712C19.776 60.9547 18.112 64.9227 18.112 69.616C18.112 74.3093 19.776 78.32 23.104 81.648C26.432 84.976 30.4427 86.64 35.136 86.64C39.8293 86.64 43.7973 84.976 47.04 81.648C50.368 78.32 52.032 74.3093 52.032 69.616ZM146.562 69.616C146.562 79.1733 143.234 87.28 136.578 93.936C130.007 100.592 121.943 103.92 112.386 103.92C102.743 103.92 94.594 100.635 87.938 94.064C81.3673 87.408 78.082 79.2587 78.082 69.616C78.082 60.0587 81.41 51.9947 88.066 45.424C94.722 38.768 102.829 35.44 112.386 35.44C121.943 35.44 130.007 38.768 136.578 45.424C143.234 51.9947 146.562 60.0587 146.562 69.616ZM129.282 69.616C129.282 65.008 127.618 61.04 124.29 57.712C120.962 54.384 116.994 52.72 112.386 52.72C107.693 52.72 103.682 54.384 100.354 57.712C97.026 60.9547 95.362 64.9227 95.362 69.616C95.362 74.3093 97.026 78.32 100.354 81.648C103.682 84.976 107.693 86.64 112.386 86.64C117.079 86.64 121.047 84.976 124.29 81.648C127.618 78.32 129.282 74.3093 129.282 69.616ZM213.566 94.32C206.91 100.72 199.017 103.92 189.886 103.92C180.243 103.92 172.094 100.635 165.438 94.064C158.867 87.408 155.582 79.2587 155.582 69.616C155.582 60.0587 158.91 51.9947 165.566 45.424C172.222 38.768 180.329 35.44 189.886 35.44C198.59 35.44 206.185 38.384 212.67 44.272L202.302 58.224C198.974 54.5547 194.835 52.72 189.886 52.72C185.193 52.72 181.182 54.384 177.854 57.712C174.526 60.9547 172.862 64.9227 172.862 69.616C172.862 74.3093 174.526 78.32 177.854 81.648C181.182 84.976 185.193 86.64 189.886 86.64C195.006 86.64 199.23 84.6773 202.558 80.752L213.566 94.32ZM274.05 82.416C274.05 86.512 272.685 90.224 269.954 93.552C264.493 100.208 256.727 103.408 246.658 103.152C242.647 103.067 238.253 102.171 233.474 100.464C228.781 98.7573 224.941 96.624 221.954 94.064L231.554 81.648C236.162 86 241.069 88.176 246.274 88.176H246.658C248.791 88.176 250.711 87.792 252.418 87.024C254.637 86 255.746 84.5493 255.746 82.672V82.16C255.49 80.1973 254.167 78.7893 251.778 77.936C250.839 77.7653 248.834 77.3813 245.762 76.784C241.922 76.016 238.679 75.0773 236.034 73.968C228.269 70.64 224.386 64.7947 224.386 56.432C224.386 48.4107 228.354 42.3947 236.29 38.384C239.789 36.592 243.586 35.6533 247.682 35.568C251.949 35.4827 256.386 36.208 260.994 37.744C266.285 39.536 270.039 41.8827 272.258 44.784L260.738 55.152C257.751 52.1653 254.509 50.672 251.01 50.672C245.549 50.672 242.818 52.464 242.818 56.048V56.304C242.818 58.0107 245.037 59.4613 249.474 60.656C249.815 60.7413 252.631 61.296 257.922 62.32C268.674 64.368 274.05 70.9387 274.05 82.032V82.416Z" class="docs-logo-svg" fill="#404040"/>
|
||||||
<style>
|
<style>
|
||||||
[data-theme="dark"] .docs-logo-svg {
|
[data-theme="dark"] .docs-logo-svg {
|
||||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Loading…
Add table
Reference in a new issue