Add Starlight documentation
Added Starlight to the project for improved documentation capabilities, including internalization support and enhanced styling. This will provide a more streamlined and user-friendly experience for users accessing documentation across different languages and platforms.
This commit is contained in:
parent
317c56ff29
commit
f6d71d98fc
49 changed files with 3845 additions and 2526 deletions
|
@ -3,6 +3,8 @@ import tailwind from "@astrojs/tailwind";
|
|||
import vercelStatic from "@astrojs/vercel/static";
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
import compressor from "astro-compressor";
|
||||
import starlight from "@astrojs/starlight";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
// https://docs.astro.build/en/guides/images/#authorizing-remote-images
|
||||
|
@ -14,7 +16,52 @@ export default defineConfig({
|
|||
integrations: [
|
||||
tailwind(),
|
||||
sitemap(),
|
||||
compressor({ gzip: false, brotli: true }),
|
||||
starlight({
|
||||
title: "ScrewFast Docs",
|
||||
defaultLocale: "en",
|
||||
locales: {
|
||||
en: {
|
||||
label: "English",
|
||||
},
|
||||
de: { label: "Deutsch", lang: "de" },
|
||||
es: { label: "Español", lang: "es" },
|
||||
fa: { label: "Persian", lang: "fa", dir: "rtl" },
|
||||
fr: { label: "Français", lang: "fr" },
|
||||
ja: { label: "日本語", lang: "ja" },
|
||||
"zh-cn": { label: "简体中文", lang: "zh-CN" },
|
||||
},
|
||||
sidebar: [
|
||||
{
|
||||
label: "Quick Start Guides",
|
||||
autogenerate: { directory: "guides" },
|
||||
},
|
||||
{
|
||||
label: "Tools & Equipment",
|
||||
autogenerate: { directory: "tools" },
|
||||
},
|
||||
{
|
||||
label: "Construction Services",
|
||||
autogenerate: { directory: "construction" },
|
||||
},
|
||||
{
|
||||
label: "Advanced Topics",
|
||||
autogenerate: { directory: "advanced" },
|
||||
},
|
||||
],
|
||||
social: {
|
||||
github: "https://github.com/mearashadowfax/ScrewFast",
|
||||
},
|
||||
disable404Route: true,
|
||||
customCss: ["./src/styles/starlight.css"],
|
||||
favicon: "/favicon.ico",
|
||||
components: {
|
||||
SiteTitle: "./src/components/ui/SiteTitle.astro",
|
||||
},
|
||||
}),
|
||||
compressor({
|
||||
gzip: false,
|
||||
brotli: true,
|
||||
}),
|
||||
],
|
||||
output: "static",
|
||||
experimental: {
|
||||
|
|
4314
package-lock.json
generated
4314
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -12,6 +12,8 @@
|
|||
"dependencies": {
|
||||
"@astrojs/check": "^0.5.9",
|
||||
"@astrojs/sitemap": "^3.1.1",
|
||||
"@astrojs/starlight": "^0.21.1",
|
||||
"@astrojs/starlight-tailwind": "^2.0.1",
|
||||
"@astrojs/tailwind": "^5.1.0",
|
||||
"@astrojs/vercel": "^7.3.6",
|
||||
"astro": "^4.5.6",
|
||||
|
|
47
src/components/ui/SiteTitle.astro
Normal file
47
src/components/ui/SiteTitle.astro
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
import logo from "../../images/starlight/screwfast_logo_dark.svg?raw";
|
||||
import docs from "../../images/starlight/docs_logo.svg?raw";
|
||||
import type { Props } from "@astrojs/starlight/props";
|
||||
|
||||
const main = "/";
|
||||
const self = "/" + (Astro.props.locale || "en") + "/welcome-to-docs/";
|
||||
---
|
||||
|
||||
<span class="site-title flex">
|
||||
<a class="main-logo" href={main} set:html={logo} aria-label="Astro" />
|
||||
<a class="docs-logo" href={self} set:html={docs} aria-label="Docs" />
|
||||
</span>
|
||||
|
||||
<style>
|
||||
.site-title {
|
||||
gap: 1rem;
|
||||
}
|
||||
.site-title a {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.site-title a:focus-visible {
|
||||
outline: 0;
|
||||
}
|
||||
.site-title a:focus-visible > :global(*) {
|
||||
outline: auto;
|
||||
outline-offset: 0.33rem;
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
.site-title :global(svg) {
|
||||
--display-height: 1.75rem;
|
||||
width: auto;
|
||||
height: auto;
|
||||
transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
|
||||
}
|
||||
.site-title a:hover :global(svg) {
|
||||
--hover-offset: 0.15rem;
|
||||
transform: translateY(calc(.1rem * -1));
|
||||
transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
|
||||
}
|
||||
</style>
|
|
@ -1,6 +1,7 @@
|
|||
// https://docs.astro.build/en/guides/content-collections/#defining-collections
|
||||
|
||||
import { z, defineCollection } from 'astro:content';
|
||||
import { docsSchema } from '@astrojs/starlight/schema';
|
||||
|
||||
const productsCollection = defineCollection({
|
||||
type: 'content',
|
||||
|
@ -82,6 +83,7 @@ const insightsCollection = defineCollection({
|
|||
});
|
||||
|
||||
export const collections = {
|
||||
docs: defineCollection({ schema: docsSchema() }),
|
||||
'products': productsCollection,
|
||||
'blog': blogCollection,
|
||||
'insights': insightsCollection,
|
||||
|
|
65
src/content/docs/de/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/de/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/de/guides/getting-started.mdx
Normal file
81
src/content/docs/de/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/de/guides/intro.mdx
Normal file
31
src/content/docs/de/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
47
src/content/docs/de/welcome-to-docs.mdx
Normal file
47
src/content/docs/de/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: Dokumentationszentrum
|
||||
tagline: Ihr zentraler Anlaufpunkt für vereinfachte Werkzeuganleitungen, detaillierte Service-Dokumentationen und Projektunterstützung.
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /fa/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="Schnellstartanleitungen" icon="document">
|
||||
Starten Sie schnell und einfach mit unseren klaren und prägnanten Anleitungen, die für neue Benutzer und erfahrene Experten gleichermaßen geeignet sind.
|
||||
</Card>
|
||||
|
||||
<Card title="Werkzeuge & Ausrüstung" icon="seti:eslint">
|
||||
Entdecken Sie die vollständige Palette hochwertiger Werkzeuge und Ausrüstungen von ScrewFast. Jeder Unterabschnitt bietet detaillierte Spezifikationen, Gebrauchsanweisungen und Wartungstipps.
|
||||
</Card>
|
||||
|
||||
<Card title="Bauleistungen" icon="seti:puppet">
|
||||
Entdecken Sie die vollständige Palette hochwertiger Werkzeuge und Ausrüstungen von ScrewFast. Jeder Unterabschnitt bietet detaillierte Spezifikationen, Gebrauchsanweisungen und Wartungstipps.
|
||||
</Card>
|
||||
|
||||
<Card title="Erweiterte Themen" icon="seti:terraform">
|
||||
Entdecken Sie die vollständige Palette hochwertiger Werkzeuge und Ausrüstungen von ScrewFast. Jeder Unterabschnitt bietet detaillierte Spezifikationen, Gebrauchsanweisungen und Wartungstipps.
|
||||
</Card>
|
||||
</CardGrid>
|
58
src/content/docs/en/advanced/technical-specifications.mdx
Normal file
58
src/content/docs/en/advanced/technical-specifications.mdx
Normal file
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
title: Technical Specifications
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Technical Specifications
|
||||
order: 1
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
Dive deep into the technicalities of our product offerings with ScrewFast's comprehensive technical specifications documentation. Our detailed data sheets provide you with all the information you need on:
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Material properties and grades" icon="star"></Card>
|
||||
<Card title="Mechanical strengths and tolerances" icon="star"></Card>
|
||||
<Card title="Environmental resilience and sustainability ratings" icon="star"></Card>
|
||||
<Card title="Compatibility and interoperability" icon="star"></Card>
|
||||
</CardGrid>
|
||||
|
||||
Understanding these specifications will help you select and use our products with confidence, ensuring optimal performance and longevity.
|
||||
|
||||
<Steps>
|
||||
1. **Material Specifications**
|
||||
Insight into the materials used and their properties to assist you with informed decision-making.
|
||||
|
||||
2. **Performance Metrics**
|
||||
Documented performance metrics that detail what you can expect from our products under various conditions.
|
||||
|
||||
3. **Compliance Standards**
|
||||
Information about industry standards and regulatory compliance ensures your project adheres to necessary codes and practices.
|
||||
</Steps>
|
||||
|
||||
## Product Integration Techniques
|
||||
|
||||
Unlock the full potential of ScrewFast products with our set of specialized integration techniques.
|
||||
|
||||
Leverage our in-depth knowledge to enhance the efficiency and durability of your constructions by correctly incorporating our products.
|
||||
|
||||
## Advanced Use Cases
|
||||
|
||||
Explore the possibilities with ScrewFast through real-world scenarios. Our catalog of advanced use cases demonstrates how our products can solve complex challenges and push the boundaries of conventional construction.
|
||||
|
||||
See how ScrewFast products have been instrumental in:
|
||||
|
||||
<CardGrid>
|
||||
<LinkCard title="Major infrastructure projects" href="en/guides/getting-started" />
|
||||
<LinkCard title="Innovative architectural accomplishments" href="en/guides/getting-started" />
|
||||
<LinkCard title="High-stress industrial applications" href="en/guides/getting-started" />
|
||||
</CardGrid>
|
||||
|
||||
These case studies serve as an inspiration and a learning tool, showcasing what can be achieved with the right expertise and ScrewFast's superior product range.
|
22
src/content/docs/en/construction/custom-solutions.mdx
Normal file
22
src/content/docs/en/construction/custom-solutions.mdx
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: Custom Solutions for Complex Projects
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Custom Solutions
|
||||
order: 4
|
||||
---
|
||||
|
||||
import {
|
||||
Card
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
Challenging projects demand innovative solutions. ScrewFast excels in delivering custom solutions engineered to address the most intricate and demanding construction requirements.
|
||||
|
||||
<Card title="Our custom services provide:" icon="puzzle">
|
||||
1. Expert analysis of unconventional project demands
|
||||
2. Tailored construction methods for unique structures
|
||||
3. Specialized materials and equipment sourcing
|
||||
4. Collaboration with specialized subcontractors and consultants
|
||||
</Card>
|
||||
|
||||
No matter the complexity, our bespoke services ensure that your specialized project is not just completed, but mastered.
|
21
src/content/docs/en/construction/project-planning.mdx
Normal file
21
src/content/docs/en/construction/project-planning.mdx
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: Project Planning and Management
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Project Planning
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Card
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
Achieve seamless project execution with ScrewFast's meticulous planning and management approach. We prioritize clear communication and strategic planning to ensure your project milestones are achieved without compromise.
|
||||
|
||||
<Card title="Our planning and management services include:" icon="seti:notebook">
|
||||
1. Detailed project timelines
|
||||
2. Resource allocation and optimization
|
||||
3. Regular progress updates and reports
|
||||
4. Risk assessment and management
|
||||
</Card>
|
||||
We believe in proactive management to foresee potential challenges and devise solutions before they impact the project.
|
29
src/content/docs/en/construction/safety.mdx
Normal file
29
src/content/docs/en/construction/safety.mdx
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: Safety Protocols and Procedures
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Safety Protocols
|
||||
order: 3
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
Safety is at the core of everything we do at ScrewFast. Our comprehensive safety protocols and procedures are designed to protect our team, clients, and the integrity of your project.
|
||||
|
||||
<Card title="Key features of our safety commitment include:"></Card>
|
||||
|
||||
<LinkCard
|
||||
title="Rigorous safety training for all personnel"
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
|
||||
<CardGrid>
|
||||
<LinkCard title="Regular safety audits and compliance checks" href="en/guides/getting-started" />
|
||||
<LinkCard title="Emergency response plans and drills" href="en/guides/getting-started" />
|
||||
</CardGrid>
|
||||
|
||||
By integrating safety into our daily operations, we create a secure working environment without compromising on quality and productivity.
|
37
src/content/docs/en/construction/service-overview.mdx
Normal file
37
src/content/docs/en/construction/service-overview.mdx
Normal file
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
title: Comprehensive Service Overview
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Service Overview
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Aside
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
Welcome to ScrewFast Construction Services – your trusted partner in bringing complex construction visions to life. Our dedicated team is equipped with state-of-the-art tools and extensive industry knowledge to ensure your projects are completed with precision and efficiency.
|
||||
|
||||
At ScrewFast, we specialize in providing a range of services tailored to meet your unique construction needs. From the initial concept to the final touches, our services encompass:
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="Pre-construction Consultations" icon="star">
|
||||
A thorough assessment to understand your project requirements, site conditions, and to provide a clear roadmap for your project.
|
||||
</Card>
|
||||
|
||||
<Card title="Design and Engineering" icon="star">
|
||||
Leveraging innovative software and expertise to craft bespoke solutions that bring your structural vision to life with accuracy and innovation.
|
||||
</Card>
|
||||
|
||||
<Card title="Project Management" icon="star">
|
||||
Dedicated on-site leadership to ensure that your project runs smoothly, on time, and within budget.
|
||||
</Card>
|
||||
|
||||
<Card title="Construction and Installation" icon="star">
|
||||
Employing the latest tools and technologies along with skilled craftsmanship to execute your project to the highest standard.
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/en/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/en/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/en/guides/getting-started.mdx
Normal file
81
src/content/docs/en/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/en/guides/intro.mdx
Normal file
31
src/content/docs/en/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
42
src/content/docs/en/tools/equipment-care.mdx
Normal file
42
src/content/docs/en/tools/equipment-care.mdx
Normal file
|
@ -0,0 +1,42 @@
|
|||
---
|
||||
title: Equipment Care & Maintenance
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Equipment Care
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Aside
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
<Card title="Maintaining Your ScrewFast Tools" icon="approve-check-circle">
|
||||
<LinkCard
|
||||
description="Step-by-step guide for the routine care and maintenance of your ScrewFast tools to ensure long-lasting functionality."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
description="Cleaning, storage, and inspection practices to keep tools in optimal condition"
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</Card>
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Best Practices for Equipment Longevity" icon="star">
|
||||
|
||||
1. Strategies for extending the life of your tools and equipment through proper use and handling
|
||||
2. A preventative maintenance schedule that will help avoid common wear and tear
|
||||
</Card>
|
||||
<Card title="Troubleshooting Common Tool Issues" icon="rocket">
|
||||
|
||||
1. Solutions for frequently encountered issues with ScrewFast equipment
|
||||
2. Advice on when to seek professional repair services versus performing DIY fixes
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
<Aside>
|
||||
Remember that attentiveness to the condition and care of your tools and equipment is paramount to ensuring their longevity and reliability. Regular maintenance not only helps prevent downtime but can also ensure the safety of those who use them. For each guide and reference listed here, we offer additional support through our customer service channels should you require personalized assistance.
|
||||
</Aside>
|
37
src/content/docs/en/tools/tool-guides.mdx
Normal file
37
src/content/docs/en/tools/tool-guides.mdx
Normal file
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
title: Tool Guides
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Tool Guides
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} from "@astrojs/starlight/components";
|
||||
|
||||
ScrewFast prides itself on a comprehensive range of high-grade tools and equipment. These resources are not just about delivering the performance you expect but ensuring they stand the test of time. Below, you will find a curated selection of guides geared towards helping you get the most out of our products.
|
||||
|
||||
### Tool Guides
|
||||
|
||||
**Machine Screws Manual**
|
||||
- Detailed specifications and applications for ScrewFast's variety of machine screws
|
||||
- Visual guide for identifying screw types and choosing the right one for your project
|
||||
|
||||
**Assorted Screw Set Handbook**
|
||||
- Instructions on usage and selection from the assorted screw set
|
||||
- Tips on organizing and storing your screw set for easy access
|
||||
|
||||
**Tap Bolts and Nuts Catalog**
|
||||
- Exploring the diverse range of tap bolts and nuts suitable for various construction environments
|
||||
- Guidelines for selecting the correct bolt size and nut pairing for secure fastening
|
||||
|
||||
**Hex Bolts Instructions**
|
||||
- Comprehensive procedures on the use of hex bolts in your projects
|
||||
- Strength ratings, threading information, and torque recommendations
|
47
src/content/docs/en/welcome-to-docs.mdx
Normal file
47
src/content/docs/en/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: Documentation Hub
|
||||
tagline: Your central hub for streamlined tool guidance, detailed service docs, and project support.
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /en/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="Quick Start Guides" icon="document">
|
||||
Get up and running swiftly with our straightforward and concise guides, tailored for new users and seasoned experts alike.
|
||||
</Card>
|
||||
|
||||
<Card title="Tools & Equipment" icon="seti:eslint">
|
||||
Discover the complete lineup of ScrewFast's superior quality tools and equipment. Each subsection offers detailed specifications, usage instructions, and maintenance tips.
|
||||
</Card>
|
||||
|
||||
<Card title="Construction Services" icon="seti:puppet">
|
||||
Discover the complete lineup of ScrewFast's superior quality tools and equipment. Each subsection offers detailed specifications, usage instructions, and maintenance tips.
|
||||
</Card>
|
||||
|
||||
<Card title="Advanced Topics" icon="seti:terraform">
|
||||
Discover the complete lineup of ScrewFast's superior quality tools and equipment. Each subsection offers detailed specifications, usage instructions, and maintenance tips.
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/es/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/es/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/es/guides/getting-started.mdx
Normal file
81
src/content/docs/es/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/es/guides/intro.mdx
Normal file
31
src/content/docs/es/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
47
src/content/docs/es/welcome-to-docs.mdx
Normal file
47
src/content/docs/es/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: Centro de Documentación
|
||||
tagline: Tu centro central para orientación de herramientas simplificada, documentos de servicio detallados y apoyo al proyecto.
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /fa/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="Guías de Inicio Rápido" icon="document">
|
||||
Levántate y comienza rápidamente con nuestras guías directas y concisas, diseñadas para nuevos usuarios y expertos experimentados por igual.
|
||||
</Card>
|
||||
|
||||
<Card title="Herramientas y Equipos" icon="seti:eslint">
|
||||
Descubre la línea completa de herramientas y equipos de calidad superior de ScrewFast. Cada subsección ofrece especificaciones detalladas, instrucciones de uso y consejos de mantenimiento.
|
||||
</Card>
|
||||
|
||||
<Card title="Servicios de Construcción" icon="seti:puppet">
|
||||
Descubre la línea completa de herramientas y equipos de calidad superior de ScrewFast. Cada subsección ofrece especificaciones detalladas, instrucciones de uso y consejos de mantenimiento.
|
||||
</Card>
|
||||
|
||||
<Card title="Temas Avanzados" icon="seti:terraform">
|
||||
Descubre la línea completa de herramientas y equipos de calidad superior de ScrewFast. Cada subsección ofrece especificaciones detalladas, instrucciones de uso y consejos de mantenimiento.
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/fa/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/fa/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/fa/guides/getting-started.mdx
Normal file
81
src/content/docs/fa/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/fa/guides/intro.mdx
Normal file
31
src/content/docs/fa/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
43
src/content/docs/fa/welcome-to-docs.mdx
Normal file
43
src/content/docs/fa/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: مرکز اسناد
|
||||
tagline: مرکز مرکزی شما برای راهنمایی سادهسازی شده ابزار، اسناد خدمات تفصیلی و پشتیبانی پروژه.
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /fa/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
<Card title="راهنمای شروع سریع" icon="document">
|
||||
با راهنماهای مستقیم و مختصر ما، برای کاربران جدید و کارشناسان تجربهیافته، به سرعت به راه بیافتید.
|
||||
</Card>
|
||||
<Card title="ابزارها و تجهیزات" icon="seti:eslint">
|
||||
تمامی ابزارها و تجهیزات با کیفیت برتر شرکت ScrewFast را کشف کنید. هر بخش شامل مشخصات دقیق، راهنمای استفاده و نکات نگهداری است.
|
||||
</Card>
|
||||
<Card title="خدمات ساخت و ساز" icon="seti:puppet">
|
||||
تمامی ابزارها و تجهیزات با کیفیت برتر شرکت ScrewFast را کشف کنید. هر بخش شامل مشخصات دقیق، راهنمای استفاده و نکات نگهداری است.
|
||||
</Card>
|
||||
<Card title="مباحث پیشرفته" icon="seti:terraform">
|
||||
تمامی ابزارها و تجهیزات با کیفیت برتر شرکت ScrewFast را کشف کنید. هر بخش شامل مشخصات دقیق، راهنمای استفاده و نکات نگهداری است.
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/fr/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/fr/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/fr/guides/getting-started.mdx
Normal file
81
src/content/docs/fr/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/fr/guides/intro.mdx
Normal file
31
src/content/docs/fr/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
47
src/content/docs/fr/welcome-to-docs.mdx
Normal file
47
src/content/docs/fr/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: Hub de Documentation
|
||||
tagline: Votre centre central pour l'orientation simplifiée des outils, les documents de service détaillés et le soutien aux projets.
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /fa/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="Guides de Démarrage Rapide" icon="document">
|
||||
Mettez-vous en route rapidement avec nos guides clairs et concis, adaptés aux nouveaux utilisateurs et aux experts chevronnés.
|
||||
</Card>
|
||||
|
||||
<Card title="Outils et Équipements" icon="seti:eslint">
|
||||
Découvrez la gamme complète d'outils et d'équipements de qualité supérieure de ScrewFast. Chaque sous-section offre des spécifications détaillées, des instructions d'utilisation et des conseils de maintenance.
|
||||
</Card>
|
||||
|
||||
<Card title="Services de Construction" icon="seti:puppet">
|
||||
Découvrez la gamme complète d'outils et d'équipements de qualité supérieure de ScrewFast. Chaque sous-section offre des spécifications détaillées, des instructions d'utilisation et des conseils de maintenance.
|
||||
</Card>
|
||||
|
||||
<Card title="Sujets Avancés" icon="seti:terraform">
|
||||
Découvrez la gamme complète d'outils et d'équipements de qualité supérieure de ScrewFast. Chaque sous-section offre des spécifications détaillées, des instructions d'utilisation et des conseils de maintenance.
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/ja/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/ja/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/ja/guides/getting-started.mdx
Normal file
81
src/content/docs/ja/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/ja/guides/intro.mdx
Normal file
31
src/content/docs/ja/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
47
src/content/docs/ja/welcome-to-docs.mdx
Normal file
47
src/content/docs/ja/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: ドキュメンテーションハブ
|
||||
tagline: 効率的なツールのガイド、詳細なサービス文書、およびプロジェクトのサポートのための中心的なハブ。
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /fa/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
|
||||
<Card title="クイックスタートガイド" icon="document">
|
||||
当社のわかりやすく簡潔なガイドで迅速に立ち上がり、新規ユーザーと熟練した専門家の両方に適したものを利用してください。
|
||||
</Card>
|
||||
|
||||
<Card title="ツール&装備" icon="seti:eslint">
|
||||
ScrewFastの優れた品質の完全なツールと装備を発見してください。各サブセクションには詳細な仕様、使用方法の説明、およびメンテナンスのヒントが提供されています。
|
||||
</Card>
|
||||
|
||||
<Card title="建設サービス" icon="seti:puppet">
|
||||
ScrewFastの優れた品質の完全なツールと装備を発見してください。各サブセクションには詳細な仕様、使用方法の説明、およびメンテナンスのヒントが提供されています。
|
||||
</Card>
|
||||
|
||||
<Card title="高度なトピック" icon="seti:terraform">
|
||||
ScrewFastの優れた品質の完全なツールと装備を発見してください。各サブセクションには詳細な仕様、使用方法の説明、およびメンテナンスのヒントが提供されています。
|
||||
</Card>
|
||||
</CardGrid>
|
65
src/content/docs/zh-cn/guides/first-project-checklist.mdx
Normal file
65
src/content/docs/zh-cn/guides/first-project-checklist.mdx
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: First Project Checklist
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: First Project Checklist
|
||||
order: 3
|
||||
---
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Project Preparation
|
||||
|
||||
<CardGrid>
|
||||
<Card title="Scope and Objectives">
|
||||
1. Ensure clarity of the project's scope, deliverables, and desired outcomes
|
||||
2. Define clear objectives and success criteria for project completion
|
||||
</Card>
|
||||
<Card title="Tools and Equipment">
|
||||
1. Make a list of all required ScrewFast tools and equipment
|
||||
2. Verify inventory availability and condition before starting
|
||||
</Card>
|
||||
<Card title="Arranging Services">
|
||||
1. If additional expertise or manpower is needed, arrange for ScrewFast construction services in advance
|
||||
2. Clarify service level agreements and timelines with your ScrewFast representative
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Project Execution
|
||||
### Initial Phase
|
||||
<Steps>
|
||||
1. Set up the project site according to ScrewFast setup guidelines
|
||||
|
||||
2. Conduct an initial team meeting to align on project goals and ScrewFast methodologies
|
||||
|
||||
3. Establish project checkpoints and milestones for regular assessment
|
||||
</Steps>
|
||||
|
||||
|
||||
## Additional Resources
|
||||
<CardGrid>
|
||||
<LinkCard
|
||||
title="Detailed Guides"
|
||||
description="Access in-depth documentation and user manuals for ScrewFast tools and services."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Support Contacts"
|
||||
description="Keep handy the contact details for ScrewFast support, available for assistance throughout your project."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
<LinkCard
|
||||
title="Advanced Learning"
|
||||
description="Explore further educational resources provided by ScrewFast to refine your skills and knowledge base."
|
||||
href="en/guides/getting-started"
|
||||
/>
|
||||
</CardGrid>
|
81
src/content/docs/zh-cn/guides/getting-started.mdx
Normal file
81
src/content/docs/zh-cn/guides/getting-started.mdx
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Getting Started
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Getting Started
|
||||
order: 1
|
||||
---
|
||||
|
||||
import {
|
||||
Card,
|
||||
CardGrid,
|
||||
LinkCard,
|
||||
Steps,
|
||||
Aside,
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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.
|
||||
|
||||
## Tools Overview
|
||||
|
||||
<CardGrid>
|
||||
<Card title="ScrewDriver Set" icon="seti:config">
|
||||
Versatile and ergonomic, suitable for all screw types.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Hammer Drill" icon="seti:pipeline">
|
||||
Powerful performance for drilling and impact driving.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
<Card title="Power Saws" icon="seti:crystal">
|
||||
Precision cutting with adjustable settings for various materials.
|
||||
<LinkCard title="Learn More " href="/en/index/" />
|
||||
</Card>
|
||||
</CardGrid>
|
||||
|
||||
## Setup Instructions
|
||||
|
||||
<Steps>
|
||||
|
||||
1. Unboxing Icon Unbox Your ScrewFast Tools
|
||||
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
|
||||
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
|
||||
Follow the manufacturer's instructions to calibrate your tools as required. Ensure batteries are charged or electrical connections are secure.
|
||||
|
||||
</Steps>
|
||||
|
||||
|
||||
## Cleaning and Maintenance
|
||||
|
||||
<Aside type="tip">
|
||||
Always unplug tools before cleaning. Use a soft, dry cloth to wipe the
|
||||
exterior and store in a dry place.
|
||||
</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
|
||||
title="In-depth Tutorials"
|
||||
description="Deep dive into using our tools with expert-led tutorials."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Video Demos"
|
||||
description="Visual guides to get the most out of your tools."
|
||||
href="/guides/customization/"
|
||||
/>
|
||||
|
||||
<LinkCard
|
||||
title="Warranty Information"
|
||||
description="Understand your coverage and how to make a claim if needed."
|
||||
href="/guides/customization/"
|
||||
/>
|
31
src/content/docs/zh-cn/guides/intro.mdx
Normal file
31
src/content/docs/zh-cn/guides/intro.mdx
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: Introduction to ScrewFast Services
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
sidebar:
|
||||
label: Introduction to Services
|
||||
order: 2
|
||||
---
|
||||
|
||||
import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} 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>
|
||||
<TabItem label="Tailored Solutions">
|
||||
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 label="Expert 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.
|
||||
</TabItem>
|
||||
<TabItem label="Commitment to Quality">
|
||||
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 label="Ongoing Support">
|
||||
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>
|
||||
</Tabs>
|
46
src/content/docs/zh-cn/welcome-to-docs.mdx
Normal file
46
src/content/docs/zh-cn/welcome-to-docs.mdx
Normal file
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
title: ScrewFast docs
|
||||
head:
|
||||
- tag: title
|
||||
content: ScrewFast docs
|
||||
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
|
||||
template: splash
|
||||
editUrl: false
|
||||
lastUpdated: false
|
||||
next: false
|
||||
hero:
|
||||
title: 文档中心
|
||||
tagline: 您的集中式工具指南、详细服务文档和项目支持中心。
|
||||
image:
|
||||
alt: A ScrewFast's Logo
|
||||
dark: ../../../images/starlight/screwfast_hero.svg
|
||||
light: ../../../images/starlight/screwfast_hero_dark.svg
|
||||
actions:
|
||||
- text: Get started
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
link: /zn-cn/guides/getting-started/
|
||||
- text: View on GitHub
|
||||
icon: external
|
||||
link: https://github.com/mearashadowfax/ScrewFast
|
||||
---
|
||||
import "../../../styles/starlight_main.css";
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
|
||||
<CardGrid stagger>
|
||||
<Card title="快速入门指南" icon="document">
|
||||
通过我们简明扼要的指南,快速掌握使用技巧,适用于新手和老手用户。
|
||||
</Card>
|
||||
|
||||
<Card title="工具与设备" icon="seti:eslint">
|
||||
探索 ScrewFast 的全面工具和设备系列。每个子部分提供详细的规格、使用说明和维护技巧。
|
||||
</Card>
|
||||
|
||||
<Card title="施工服务" icon="seti:puppet">
|
||||
探索 ScrewFast 的全面工具和设备系列。每个子部分提供详细的规格、使用说明和维护技巧。
|
||||
</Card>
|
||||
|
||||
<Card title="高级主题" icon="seti:terraform">
|
||||
探索 ScrewFast 的全面工具和设备系列。每个子部分提供详细的规格、使用说明和维护技巧。
|
||||
</Card>
|
||||
</CardGrid>
|
8
src/images/starlight/docs_logo.svg
Normal file
8
src/images/starlight/docs_logo.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<svg viewBox="0 0 275 104" width="275" height="104" fill="none" style="height: 1.5rem;" 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"/>
|
||||
<style>
|
||||
[data-theme="dark"] .docs-logo-svg {
|
||||
fill: #d4d4d4;
|
||||
}
|
||||
</style>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
9
src/images/starlight/screwfast_hero.svg
Normal file
9
src/images/starlight/screwfast_hero.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="521" height="309" fill="none">
|
||||
<rect width="78.937" height="18.485" x="269" y="172.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 269 172.911)"/>
|
||||
<rect width="78.937" height="18.485" x="319" y="172.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 319 172.911)"/>
|
||||
<rect width="78.937" height="18.485" x="369.285" y="172.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 369.285 172.911)"/>
|
||||
<rect width="28.464" height="18.485" x="419.57" y="172.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 419.57 172.911)"/>
|
||||
<path fill="#facc15" d="M499.804 146.068c7.03 2.636 6.885 12.63-.219 15.061l-18.951 6.483c-5.238 1.792-10.669-2.15-10.589-7.686l.196-13.514c.081-5.535 5.624-9.318 10.808-7.374l18.755 7.03Z"/>
|
||||
<path fill="#d4d4d4" d="M141.933 101.584c.171 5.803-1.024 10.837-3.584 15.104-5.717 9.387-15.701 14.336-29.952 14.848-6.485.256-13.61-1.323-21.376-4.736l.256-19.328c1.28 1.024 2.944 2.219 4.992 3.584 3.67 2.475 7.808 3.712 12.416 3.712 12.203 0 18.304-4.352 18.304-13.056v-.256c0-4.01-2.219-7.296-6.656-9.856-2.389-1.365-6.827-2.987-13.312-4.864a137.675 137.675 0 0 1-8.32-2.816c-10.496-5.888-15.744-14.421-15.744-25.6v-.768c0-5.12 1.408-9.899 4.224-14.336 2.816-4.523 6.528-8.021 11.136-10.496 4.693-2.56 9.728-3.925 15.104-4.096 7.253-.17 14.08 1.195 20.48 4.096v18.304c-4.693-4.096-10.88-6.144-18.56-6.144-2.816 0-5.419.725-7.808 2.176-3.67 2.219-5.504 5.461-5.504 9.728 0 5.803 4.267 9.984 12.8 12.544 1.536.512 4.565 1.45 9.088 2.816 7.68 2.304 13.184 5.76 16.512 10.368 3.413 4.608 5.248 10.965 5.504 19.072Zm66.758 20.736c-6.656 6.4-14.549 9.6-23.68 9.6-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984 8.704 0 16.299 2.944 22.784 8.832l-10.368 13.952c-3.328-3.67-7.467-5.504-12.416-5.504-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904 0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992 5.12 0 9.344-1.963 12.672-5.888l11.008 13.568Zm42.82-41.6c-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904V130h-17.28V97.616c0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984v17.28Zm77.051 16.896c0 1.707-.128 3.413-.384 5.12H278.13c1.109 3.584 3.157 6.485 6.144 8.704 2.987 2.133 6.357 3.2 10.112 3.2 5.205 0 9.515-2.005 12.928-6.016l10.496 13.952c-6.571 6.229-14.379 9.344-23.424 9.344-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984s17.621 3.328 24.192 9.984c6.656 6.57 9.984 14.635 9.984 24.192Zm-19.328-7.808c-3.157-6.059-8.107-9.088-14.848-9.088-6.827 0-11.819 3.03-14.976 9.088h29.824Zm145.596 7.936c0 9.643-3.328 17.792-9.984 24.448-6.571 6.571-14.677 9.856-24.32 9.856-9.472 0-17.579-3.413-24.32-10.24-6.741 6.827-14.848 10.24-24.32 10.24-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448V63.568h17.28v34.176c0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992s8.661-1.664 11.904-4.992c3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v43.008h-.128c3.328 5.461 8.149 8.192 14.464 8.192 4.693 0 8.661-1.664 11.904-4.992 3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v34.176Z"/>
|
||||
<path fill="#d4d4d4" d="M56.064 181.616H26.24V230H8.832V128.624h47.232v14.848H26.24v20.096h29.824v18.048ZM147.389 230h-18.304l-3.712-9.984c-6.827 8.021-15.531 12.032-26.112 12.032-9.557 0-17.664-3.328-24.32-9.984-6.57-6.656-9.856-14.72-9.856-24.192 0-7.253 2.048-13.781 6.144-19.584 4.096-5.888 9.557-10.069 16.384-12.544 4.01-1.451 7.936-2.176 11.776-2.176 7.253 0 13.781 2.091 19.584 6.272 5.888 4.096 10.069 9.557 12.544 16.384L147.389 230Zm-31.104-32.128c0-5.973-2.432-10.624-7.296-13.952-2.816-1.963-6.059-2.944-9.728-2.944-5.973 0-10.581 2.389-13.824 7.168-2.048 2.987-3.072 6.229-3.072 9.728 0 5.888 2.432 10.496 7.296 13.824 2.987 2.048 6.187 3.072 9.6 3.072 4.693 0 8.704-1.621 12.032-4.864 3.328-3.328 4.992-7.339 4.992-12.032Zm92.015 12.544c0 4.096-1.365 7.808-4.096 11.136-5.461 6.656-13.227 9.856-23.296 9.6-4.011-.085-8.405-.981-13.184-2.688-4.693-1.707-8.533-3.84-11.52-6.4l9.6-12.416c4.608 4.352 9.515 6.528 14.72 6.528h.384c2.133 0 4.053-.384 5.76-1.152 2.219-1.024 3.328-2.475 3.328-4.352v-.512c-.256-1.963-1.579-3.371-3.968-4.224-.939-.171-2.944-.555-6.016-1.152-3.84-.768-7.083-1.707-9.728-2.816-7.765-3.328-11.648-9.173-11.648-17.536 0-8.021 3.968-14.037 11.904-18.048 3.499-1.792 7.296-2.731 11.392-2.816 4.267-.085 8.704.64 13.312 2.176 5.291 1.792 9.045 4.139 11.264 7.04l-11.52 10.368c-2.987-2.987-6.229-4.48-9.728-4.48-5.461 0-8.192 1.792-8.192 5.376v.256c0 1.707 2.219 3.157 6.656 4.352.341.085 3.157.64 8.448 1.664 10.752 2.048 16.128 8.619 16.128 19.712v.384ZM251.511 230c-9.557 0-17.664-3.285-24.32-9.856-6.656-6.656-9.984-14.763-9.984-24.32v-67.2h17.28v34.944h17.024v14.72h-17.024v17.536c0 4.693 1.664 8.704 4.992 12.032 3.328 3.243 7.339 4.864 12.032 4.864V230Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
9
src/images/starlight/screwfast_hero_dark.svg
Normal file
9
src/images/starlight/screwfast_hero_dark.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="521" height="309" fill="none">
|
||||
<rect width="78.937" height="18.485" x="269" y="172.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 269 172.911)"/>
|
||||
<rect width="78.937" height="18.485" x="319" y="172.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 319 172.911)"/>
|
||||
<rect width="78.937" height="18.485" x="369.285" y="172.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 369.285 172.911)"/>
|
||||
<rect width="28.464" height="18.485" x="419.57" y="172.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 419.57 172.911)"/>
|
||||
<path fill="#eab308" d="M499.804 146.068c7.03 2.636 6.885 12.63-.219 15.061l-18.951 6.483c-5.238 1.792-10.669-2.15-10.589-7.686l.196-13.514c.081-5.535 5.624-9.318 10.808-7.374l18.755 7.03Z"/>
|
||||
<path fill="#404040" d="M141.933 101.584c.171 5.803-1.024 10.837-3.584 15.104-5.717 9.387-15.701 14.336-29.952 14.848-6.485.256-13.61-1.323-21.376-4.736l.256-19.328c1.28 1.024 2.944 2.219 4.992 3.584 3.67 2.475 7.808 3.712 12.416 3.712 12.203 0 18.304-4.352 18.304-13.056v-.256c0-4.01-2.219-7.296-6.656-9.856-2.389-1.365-6.827-2.987-13.312-4.864a137.675 137.675 0 0 1-8.32-2.816c-10.496-5.888-15.744-14.421-15.744-25.6v-.768c0-5.12 1.408-9.899 4.224-14.336 2.816-4.523 6.528-8.021 11.136-10.496 4.693-2.56 9.728-3.925 15.104-4.096 7.253-.17 14.08 1.195 20.48 4.096v18.304c-4.693-4.096-10.88-6.144-18.56-6.144-2.816 0-5.419.725-7.808 2.176-3.67 2.219-5.504 5.461-5.504 9.728 0 5.803 4.267 9.984 12.8 12.544 1.536.512 4.565 1.45 9.088 2.816 7.68 2.304 13.184 5.76 16.512 10.368 3.413 4.608 5.248 10.965 5.504 19.072Zm66.758 20.736c-6.656 6.4-14.549 9.6-23.68 9.6-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984 8.704 0 16.299 2.944 22.784 8.832l-10.368 13.952c-3.328-3.67-7.467-5.504-12.416-5.504-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904 0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992 5.12 0 9.344-1.963 12.672-5.888l11.008 13.568Zm42.82-41.6c-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904V130h-17.28V97.616c0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984v17.28Zm77.051 16.896c0 1.707-.128 3.413-.384 5.12H278.13c1.109 3.584 3.157 6.485 6.144 8.704 2.987 2.133 6.357 3.2 10.112 3.2 5.205 0 9.515-2.005 12.928-6.016l10.496 13.952c-6.571 6.229-14.379 9.344-23.424 9.344-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984s17.621 3.328 24.192 9.984c6.656 6.57 9.984 14.635 9.984 24.192Zm-19.328-7.808c-3.157-6.059-8.107-9.088-14.848-9.088-6.827 0-11.819 3.03-14.976 9.088h29.824Zm145.596 7.936c0 9.643-3.328 17.792-9.984 24.448-6.571 6.571-14.677 9.856-24.32 9.856-9.472 0-17.579-3.413-24.32-10.24-6.741 6.827-14.848 10.24-24.32 10.24-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448V63.568h17.28v34.176c0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992s8.661-1.664 11.904-4.992c3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v43.008h-.128c3.328 5.461 8.149 8.192 14.464 8.192 4.693 0 8.661-1.664 11.904-4.992 3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v34.176Z"/>
|
||||
<path fill="#404040" d="M56.064 181.616H26.24V230H8.832V128.624h47.232v14.848H26.24v20.096h29.824v18.048ZM147.389 230h-18.304l-3.712-9.984c-6.827 8.021-15.531 12.032-26.112 12.032-9.557 0-17.664-3.328-24.32-9.984-6.57-6.656-9.856-14.72-9.856-24.192 0-7.253 2.048-13.781 6.144-19.584 4.096-5.888 9.557-10.069 16.384-12.544 4.01-1.451 7.936-2.176 11.776-2.176 7.253 0 13.781 2.091 19.584 6.272 5.888 4.096 10.069 9.557 12.544 16.384L147.389 230Zm-31.104-32.128c0-5.973-2.432-10.624-7.296-13.952-2.816-1.963-6.059-2.944-9.728-2.944-5.973 0-10.581 2.389-13.824 7.168-2.048 2.987-3.072 6.229-3.072 9.728 0 5.888 2.432 10.496 7.296 13.824 2.987 2.048 6.187 3.072 9.6 3.072 4.693 0 8.704-1.621 12.032-4.864 3.328-3.328 4.992-7.339 4.992-12.032Zm92.015 12.544c0 4.096-1.365 7.808-4.096 11.136-5.461 6.656-13.227 9.856-23.296 9.6-4.011-.085-8.405-.981-13.184-2.688-4.693-1.707-8.533-3.84-11.52-6.4l9.6-12.416c4.608 4.352 9.515 6.528 14.72 6.528h.384c2.133 0 4.053-.384 5.76-1.152 2.219-1.024 3.328-2.475 3.328-4.352v-.512c-.256-1.963-1.579-3.371-3.968-4.224-.939-.171-2.944-.555-6.016-1.152-3.84-.768-7.083-1.707-9.728-2.816-7.765-3.328-11.648-9.173-11.648-17.536 0-8.021 3.968-14.037 11.904-18.048 3.499-1.792 7.296-2.731 11.392-2.816 4.267-.085 8.704.64 13.312 2.176 5.291 1.792 9.045 4.139 11.264 7.04l-11.52 10.368c-2.987-2.987-6.229-4.48-9.728-4.48-5.461 0-8.192 1.792-8.192 5.376v.256c0 1.707 2.219 3.157 6.656 4.352.341.085 3.157.64 8.448 1.664 10.752 2.048 16.128 8.619 16.128 19.712v.384ZM251.511 230c-9.557 0-17.664-3.285-24.32-9.856-6.656-6.656-9.984-14.763-9.984-24.32v-67.2h17.28v34.944h17.024v14.72h-17.024v17.536c0 4.693 1.664 8.704 4.992 12.032 3.328 3.243 7.339 4.864 12.032 4.864V230Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
9
src/images/starlight/screwfast_logo.svg
Normal file
9
src/images/starlight/screwfast_logo.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="521" height="226" fill="none">
|
||||
<rect width="78.937" height="18.485" x="269" y="154.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 269 154.911)"/>
|
||||
<rect width="78.937" height="18.485" x="319" y="154.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 319 154.911)"/>
|
||||
<rect width="78.937" height="18.485" x="369.285" y="154.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 369.285 154.911)"/>
|
||||
<rect width="28.464" height="18.485" x="419.57" y="154.911" fill="#facc15" rx="9.242" transform="rotate(-43.075 419.57 154.911)"/>
|
||||
<path fill="#facc15" d="M499.804 128.068c7.03 2.636 6.885 12.63-.219 15.061l-18.951 6.483c-5.238 1.792-10.669-2.15-10.589-7.686l.196-13.514c.081-5.535 5.624-9.318 10.808-7.374l18.755 7.03Z"/>
|
||||
<path fill="#d4d4d4" d="M141.808 83.584c.171 5.803-1.024 10.837-3.584 15.104-5.717 9.387-15.701 14.336-29.952 14.848-6.485.256-13.61-1.323-21.376-4.736l.256-19.328c1.28 1.024 2.944 2.219 4.992 3.584 3.67 2.475 7.808 3.712 12.416 3.712 12.203 0 18.304-4.352 18.304-13.056v-.256c0-4.01-2.219-7.296-6.656-9.856-2.389-1.365-6.827-2.987-13.312-4.864a137.675 137.675 0 0 1-8.32-2.816c-10.496-5.888-15.744-14.421-15.744-25.6v-.768c0-5.12 1.408-9.899 4.224-14.336 2.816-4.523 6.528-8.021 11.136-10.496 4.693-2.56 9.728-3.925 15.104-4.096 7.253-.17 14.08 1.195 20.48 4.096v18.304c-4.693-4.096-10.88-6.144-18.56-6.144-2.816 0-5.419.725-7.808 2.176-3.67 2.219-5.504 5.461-5.504 9.728 0 5.803 4.267 9.984 12.8 12.544 1.536.512 4.565 1.45 9.088 2.816 7.68 2.304 13.184 5.76 16.512 10.368 3.413 4.608 5.248 10.965 5.504 19.072Zm66.758 20.736c-6.656 6.4-14.549 9.6-23.68 9.6-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984 8.704 0 16.299 2.944 22.784 8.832l-10.368 13.952c-3.328-3.67-7.467-5.504-12.416-5.504-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904 0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992 5.12 0 9.344-1.963 12.672-5.888l11.008 13.568Zm42.82-41.6c-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904V112h-17.28V79.616c0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984v17.28Zm77.051 16.896a34.47 34.47 0 0 1-.384 5.12h-50.048c1.109 3.584 3.157 6.485 6.144 8.704 2.987 2.133 6.357 3.2 10.112 3.2 5.205 0 9.515-2.005 12.928-6.016l10.496 13.952c-6.571 6.229-14.379 9.344-23.424 9.344-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984s17.621 3.328 24.192 9.984c6.656 6.57 9.984 14.635 9.984 24.192Zm-19.328-7.808c-3.157-6.059-8.107-9.088-14.848-9.088-6.827 0-11.819 3.03-14.976 9.088h29.824Zm145.596 7.936c0 9.643-3.328 17.792-9.984 24.448-6.571 6.571-14.677 9.856-24.32 9.856-9.472 0-17.579-3.413-24.32-10.24-6.741 6.827-14.848 10.24-24.32 10.24-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448V45.568h17.28v34.176c0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992s8.661-1.664 11.904-4.992c3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v43.008h-.128c3.328 5.461 8.149 8.192 14.464 8.192 4.693 0 8.661-1.664 11.904-4.992 3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v34.176Z"/>
|
||||
<path fill="#d4d4d4" d="M56.064 163.616H26.24V212H8.832V110.624h47.232v14.848H26.24v20.096h29.824v18.048ZM147.389 212h-18.304l-3.712-9.984c-6.827 8.021-15.531 12.032-26.112 12.032-9.557 0-17.664-3.328-24.32-9.984-6.57-6.656-9.856-14.72-9.856-24.192 0-7.253 2.048-13.781 6.144-19.584 4.096-5.888 9.557-10.069 16.384-12.544 4.01-1.451 7.936-2.176 11.776-2.176 7.253 0 13.781 2.091 19.584 6.272 5.888 4.096 10.069 9.557 12.544 16.384L147.389 212Zm-31.104-32.128c0-5.973-2.432-10.624-7.296-13.952-2.816-1.963-6.059-2.944-9.728-2.944-5.973 0-10.581 2.389-13.824 7.168-2.048 2.987-3.072 6.229-3.072 9.728 0 5.888 2.432 10.496 7.296 13.824 2.987 2.048 6.187 3.072 9.6 3.072 4.693 0 8.704-1.621 12.032-4.864 3.328-3.328 4.992-7.339 4.992-12.032Zm92.015 12.544c0 4.096-1.365 7.808-4.096 11.136-5.461 6.656-13.227 9.856-23.296 9.6-4.011-.085-8.405-.981-13.184-2.688-4.693-1.707-8.533-3.84-11.52-6.4l9.6-12.416c4.608 4.352 9.515 6.528 14.72 6.528h.384c2.133 0 4.053-.384 5.76-1.152 2.219-1.024 3.328-2.475 3.328-4.352v-.512c-.256-1.963-1.579-3.371-3.968-4.224-.939-.171-2.944-.555-6.016-1.152-3.84-.768-7.083-1.707-9.728-2.816-7.765-3.328-11.648-9.173-11.648-17.536 0-8.021 3.968-14.037 11.904-18.048 3.499-1.792 7.296-2.731 11.392-2.816 4.267-.085 8.704.64 13.312 2.176 5.291 1.792 9.045 4.139 11.264 7.04l-11.52 10.368c-2.987-2.987-6.229-4.48-9.728-4.48-5.461 0-8.192 1.792-8.192 5.376v.256c0 1.707 2.219 3.157 6.656 4.352.341.085 3.157.64 8.448 1.664 10.752 2.048 16.128 8.619 16.128 19.712v.384ZM251.511 212c-9.557 0-17.664-3.285-24.32-9.856-6.656-6.656-9.984-14.763-9.984-24.32v-67.2h17.28v34.944h17.024v14.72h-17.024v17.536c0 4.693 1.664 8.704 4.992 12.032 3.328 3.243 7.339 4.864 12.032 4.864V212Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
17
src/images/starlight/screwfast_logo_dark.svg
Normal file
17
src/images/starlight/screwfast_logo_dark.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 521 226" width="521" height="226" style="height: 2.5rem;" fill="none">
|
||||
<rect width="78.937" height="18.485" x="269" y="154.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 269 154.911)" class="main-logo-screw-svg"/>
|
||||
<rect width="78.937" height="18.485" x="319" y="154.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 319 154.911)" class="main-logo-screw-svg"/>
|
||||
<rect width="78.937" height="18.485" x="369.285" y="154.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 369.285 154.911)" class="main-logo-screw-svg"/>
|
||||
<rect width="28.464" height="18.485" x="419.57" y="154.911" fill="#eab308" rx="9.242" transform="rotate(-43.075 419.57 154.911)" class="main-logo-screw-svg"/>
|
||||
<path fill="#eab308" class="main-logo-screw-svg" d="M499.804 128.068c7.03 2.636 6.885 12.63-.219 15.061l-18.951 6.483c-5.238 1.792-10.669-2.15-10.589-7.686l.196-13.514c.081-5.535 5.624-9.318 10.808-7.374l18.755 7.03Z"/>
|
||||
<path fill="#404040" class="main-logo-svg" d="M141.808 83.584c.171 5.803-1.024 10.837-3.584 15.104-5.717 9.387-15.701 14.336-29.952 14.848-6.485.256-13.61-1.323-21.376-4.736l.256-19.328c1.28 1.024 2.944 2.219 4.992 3.584 3.67 2.475 7.808 3.712 12.416 3.712 12.203 0 18.304-4.352 18.304-13.056v-.256c0-4.01-2.219-7.296-6.656-9.856-2.389-1.365-6.827-2.987-13.312-4.864a137.675 137.675 0 0 1-8.32-2.816c-10.496-5.888-15.744-14.421-15.744-25.6v-.768c0-5.12 1.408-9.899 4.224-14.336 2.816-4.523 6.528-8.021 11.136-10.496 4.693-2.56 9.728-3.925 15.104-4.096 7.253-.17 14.08 1.195 20.48 4.096v18.304c-4.693-4.096-10.88-6.144-18.56-6.144-2.816 0-5.419.725-7.808 2.176-3.67 2.219-5.504 5.461-5.504 9.728 0 5.803 4.267 9.984 12.8 12.544 1.536.512 4.565 1.45 9.088 2.816 7.68 2.304 13.184 5.76 16.512 10.368 3.413 4.608 5.248 10.965 5.504 19.072Zm66.758 20.736c-6.656 6.4-14.549 9.6-23.68 9.6-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984 8.704 0 16.299 2.944 22.784 8.832l-10.368 13.952c-3.328-3.67-7.467-5.504-12.416-5.504-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904 0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992 5.12 0 9.344-1.963 12.672-5.888l11.008 13.568Zm42.82-41.6c-4.693 0-8.704 1.664-12.032 4.992-3.328 3.243-4.992 7.21-4.992 11.904V112h-17.28V79.616c0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984v17.28Zm77.051 16.896a34.47 34.47 0 0 1-.384 5.12h-50.048c1.109 3.584 3.157 6.485 6.144 8.704 2.987 2.133 6.357 3.2 10.112 3.2 5.205 0 9.515-2.005 12.928-6.016l10.496 13.952c-6.571 6.229-14.379 9.344-23.424 9.344-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448 0-9.557 3.328-17.621 9.984-24.192 6.656-6.656 14.763-9.984 24.32-9.984s17.621 3.328 24.192 9.984c6.656 6.57 9.984 14.635 9.984 24.192Zm-19.328-7.808c-3.157-6.059-8.107-9.088-14.848-9.088-6.827 0-11.819 3.03-14.976 9.088h29.824Zm145.596 7.936c0 9.643-3.328 17.792-9.984 24.448-6.571 6.571-14.677 9.856-24.32 9.856-9.472 0-17.579-3.413-24.32-10.24-6.741 6.827-14.848 10.24-24.32 10.24-9.643 0-17.792-3.285-24.448-9.856-6.571-6.656-9.856-14.805-9.856-24.448V45.568h17.28v34.176c0 4.693 1.664 8.704 4.992 12.032 3.328 3.328 7.339 4.992 12.032 4.992s8.661-1.664 11.904-4.992c3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v43.008h-.128c3.328 5.461 8.149 8.192 14.464 8.192 4.693 0 8.661-1.664 11.904-4.992 3.328-3.328 4.992-7.339 4.992-12.032l.128-34.176h17.28v34.176Z"/>
|
||||
<path fill="#404040" class="main-logo-svg" d="M56.064 163.616H26.24V212H8.832V110.624h47.232v14.848H26.24v20.096h29.824v18.048ZM147.389 212h-18.304l-3.712-9.984c-6.827 8.021-15.531 12.032-26.112 12.032-9.557 0-17.664-3.328-24.32-9.984-6.57-6.656-9.856-14.72-9.856-24.192 0-7.253 2.048-13.781 6.144-19.584 4.096-5.888 9.557-10.069 16.384-12.544 4.01-1.451 7.936-2.176 11.776-2.176 7.253 0 13.781 2.091 19.584 6.272 5.888 4.096 10.069 9.557 12.544 16.384L147.389 212Zm-31.104-32.128c0-5.973-2.432-10.624-7.296-13.952-2.816-1.963-6.059-2.944-9.728-2.944-5.973 0-10.581 2.389-13.824 7.168-2.048 2.987-3.072 6.229-3.072 9.728 0 5.888 2.432 10.496 7.296 13.824 2.987 2.048 6.187 3.072 9.6 3.072 4.693 0 8.704-1.621 12.032-4.864 3.328-3.328 4.992-7.339 4.992-12.032Zm92.015 12.544c0 4.096-1.365 7.808-4.096 11.136-5.461 6.656-13.227 9.856-23.296 9.6-4.011-.085-8.405-.981-13.184-2.688-4.693-1.707-8.533-3.84-11.52-6.4l9.6-12.416c4.608 4.352 9.515 6.528 14.72 6.528h.384c2.133 0 4.053-.384 5.76-1.152 2.219-1.024 3.328-2.475 3.328-4.352v-.512c-.256-1.963-1.579-3.371-3.968-4.224-.939-.171-2.944-.555-6.016-1.152-3.84-.768-7.083-1.707-9.728-2.816-7.765-3.328-11.648-9.173-11.648-17.536 0-8.021 3.968-14.037 11.904-18.048 3.499-1.792 7.296-2.731 11.392-2.816 4.267-.085 8.704.64 13.312 2.176 5.291 1.792 9.045 4.139 11.264 7.04l-11.52 10.368c-2.987-2.987-6.229-4.48-9.728-4.48-5.461 0-8.192 1.792-8.192 5.376v.256c0 1.707 2.219 3.157 6.656 4.352.341.085 3.157.64 8.448 1.664 10.752 2.048 16.128 8.619 16.128 19.712v.384ZM251.511 212c-9.557 0-17.664-3.285-24.32-9.856-6.656-6.656-9.984-14.763-9.984-24.32v-67.2h17.28v34.944h17.024v14.72h-17.024v17.536c0 4.693 1.664 8.704 4.992 12.032 3.328 3.243 7.339 4.864 12.032 4.864V212Z"/>
|
||||
<style>
|
||||
[data-theme="dark"] .main-logo-svg {
|
||||
fill: #d4d4d4;
|
||||
}
|
||||
[data-theme="dark"] .main-logo-screw-svg {
|
||||
fill: #facc15;
|
||||
}
|
||||
</style>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
37
src/styles/starlight.css
Normal file
37
src/styles/starlight.css
Normal file
|
@ -0,0 +1,37 @@
|
|||
/* Dark mode colors. */
|
||||
:root {
|
||||
--sl-color-accent-low: #3f1505;
|
||||
--sl-color-accent: #b43c00;
|
||||
--sl-color-accent-high: #f2b9a6;
|
||||
--sl-color-white: #ffffff;
|
||||
--sl-color-gray-1: #eeeeee;
|
||||
--sl-color-gray-2: #c2c2c2;
|
||||
--sl-color-gray-3: #8b8b8b;
|
||||
--sl-color-gray-4: #585858;
|
||||
--sl-color-gray-5: #383838;
|
||||
--sl-color-gray-6: #272727;
|
||||
--sl-color-black: #181818;
|
||||
}
|
||||
/* Light mode colors. */
|
||||
:root[data-theme='light'] {
|
||||
--sl-color-accent-low: #f7ccbd;
|
||||
--sl-color-accent: #b73d00;
|
||||
--sl-color-accent-high: #5a1a00;
|
||||
--sl-color-white: #181818;
|
||||
--sl-color-gray-1: #272727;
|
||||
--sl-color-gray-2: #383838;
|
||||
--sl-color-gray-3: #585858;
|
||||
--sl-color-gray-4: #8b8b8b;
|
||||
--sl-color-gray-5: #c2c2c2;
|
||||
--sl-color-gray-6: #eeeeee;
|
||||
--sl-color-gray-7: #f6f6f6;
|
||||
--sl-color-black: #ffffff;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
select {
|
||||
background-image: none;
|
||||
}
|
52
src/styles/starlight_main.css
Normal file
52
src/styles/starlight_main.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* Dark mode colors. */
|
||||
:root {
|
||||
--sl-color-accent-low: #3f1505;
|
||||
--sl-color-accent: #b43c00;
|
||||
--sl-color-accent-high: #f2b9a6;
|
||||
--sl-color-white: #ffffff;
|
||||
--sl-color-gray-1: #eeeeee;
|
||||
--sl-color-gray-2: #c2c2c2;
|
||||
--sl-color-gray-3: #8b8b8b;
|
||||
--sl-color-gray-4: #585858;
|
||||
--sl-color-gray-5: #383838;
|
||||
--sl-color-gray-6: #272727;
|
||||
--sl-color-black: #181818;
|
||||
--yellow-hsl: 43.3,96.4%,56.3%;
|
||||
--overlay-yellow: hsla(var(--yellow-hsl), .2);
|
||||
--backdrop-color: #272727cc;
|
||||
}
|
||||
/* Light mode colors. */
|
||||
:root[data-theme='light'] {
|
||||
--sl-color-accent-low: #f7ccbd;
|
||||
--sl-color-accent: #b73d00;
|
||||
--sl-color-accent-high: #5a1a00;
|
||||
--sl-color-white: #181818;
|
||||
--sl-color-gray-1: #272727;
|
||||
--sl-color-gray-2: #383838;
|
||||
--sl-color-gray-3: #585858;
|
||||
--sl-color-gray-4: #8b8b8b;
|
||||
--sl-color-gray-5: #c2c2c2;
|
||||
--sl-color-gray-6: #eeeeee;
|
||||
--sl-color-gray-7: #f6f6f6;
|
||||
--sl-color-black: #ffffff;
|
||||
--yellow-hsl: 47.9,95.8%,53.1%;
|
||||
--backdrop-color: #F6F6F699;
|
||||
}
|
||||
|
||||
.page {
|
||||
background: linear-gradient(215deg, var(--overlay-yellow), transparent 40%), radial-gradient(var(--overlay-yellow), transparent 40%) no-repeat center center / cover, radial-gradient(var(--overlay-yellow), transparent 65%) no-repeat center center / cover;
|
||||
background-blend-mode: overlay;
|
||||
}
|
||||
|
||||
header {
|
||||
backdrop-filter: blur(12px) !important;
|
||||
background-color: var(--backdrop-color) !important;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
select {
|
||||
background-image: none;
|
||||
}
|
|
@ -9,11 +9,11 @@ export const navBarLinks = [
|
|||
// An array of links for footer
|
||||
export const footerLinks = [
|
||||
{
|
||||
section: "Product",
|
||||
section: "Ecosystem",
|
||||
links: [
|
||||
{ name: "Documentation", url: "/en/welcome-to-docs/" },
|
||||
{ name: "Tools & Equipment", url: "/products" },
|
||||
{ name: "Construction Services", url: "/services" },
|
||||
{ name: "Pricing", url: "/#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
import starlightPlugin from '@astrojs/starlight-tailwind';
|
||||
export default {
|
||||
content: [
|
||||
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
|
||||
|
@ -9,6 +10,8 @@ export default {
|
|||
extend: {},
|
||||
},
|
||||
plugins: [
|
||||
starlightPlugin(),
|
||||
require("tailwindcss/nesting"),
|
||||
require("preline/plugin"),
|
||||
require("@tailwindcss/forms")
|
||||
],
|
||||
|
|
Loading…
Add table
Reference in a new issue