diff --git a/README.md b/README.md index 47d74c1f2..8dcc8dec9 100644 --- a/README.md +++ b/README.md @@ -1,93 +1,2 @@ -# Free React / Next.js landing page template +React / Next.js landing page -![Open React / Next.js template preview](https://github.com/user-attachments/assets/522a5e46-2a0e-48ca-80eb-87c7fa58f3ea) - -**Open** is a **free React / Next.js landing page template built with Tailwind CSS** for developers/makers who want to create a quick and professional landing page for their open source projects, SaaS products, online services, and more. - -**UPDATE 2025-02-04** Added Tailwind v4 support! - -Use it for whatever you want, and be sure to reach us out on [Twitter](https://twitter.com/Cruip_com) if you build anything cool/useful with it. - -Created and maintained with ❤️ by [Cruip.com](https://cruip.com). - -_Version 1.0.0 built with the Cruip CSS is available [here](https://github.com/cruip/open-react-template/releases/tag/1.0.0)._ -_Version 2.0.3 built with Tailwind CSS and React + Vite is available [here](https://github.com/cruip/open-react-template/releases/tag/2.0.3)._ -_Version 3.3.0 (before redesign) built with Tailwind CSS and Next.js is available [here](https://github.com/cruip/open-react-template/releases/tag/3.3.0)._ - -## Live demo - -Check the live demo here 👉️ [https://open.cruip.com/](https://open.cruip.com/) - -## Open PRO - -[![Open Pro](https://github.com/user-attachments/assets/2062c728-95f1-4d59-aa2d-d63556f625d5)](https://cruip.com/) - -## Design files - -If you need the design files, you can download them from Figma's Community 👉 https://bit.ly/401KSUS - -## Usage - -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -### Getting Started - -First, run the development server: - -```bash -npm run dev -# or -pnpm dev (recommended) -# or -yarn dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. - -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -### Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -### Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. - -### Support notes - -This template has been developed with the App Router (`app`) and React Server Components. If you’re unfamiliar with these beta features, you can find more information about them on the Next.js beta documentation page. So, please note that any request dealing with React (e.g. extra features, customisations, et cetera) is to be considered out of the support scope. - -For more information about what support covers, please see our (FAQs)[https://cruip.com/faq/]. - -## Credits - -- [Nucleo](https://nucleoapp.com/) - -## Terms and License - -- Released under the [GPL](https://www.gnu.org/licenses/gpl-3.0.html). -- Copyright 2024 [Cruip](https://cruip.com/). -- Use it for personal and commercial projects, but please don’t republish, redistribute, or resell the template. -- Attribution is not required, although it is really appreciated. - -## About Us - -We're an Italian developer/designer duo creating high-quality design/code resources for developers, makers, and startups. - -## Stay in the loop - -If you would like to know when we release new resources, you can follow [@pacovitiello](https://x.com/pacovitiello) and [@DavidePacilio](https://x.com/DavidePacilio) on X, or you can subscribe to our [newsletter](https://cruip.com/newsletter/). diff --git a/app/(default)/about/page.tsx b/app/(default)/about/page.tsx new file mode 100644 index 000000000..0ab7a6523 --- /dev/null +++ b/app/(default)/about/page.tsx @@ -0,0 +1,22 @@ +export const metadata = { + title: "Контакты - АЛМ", + description: "Свяжитесь с нами", +}; + +export default function Contact() { + return ( +
+
+
+

+ О нас +

+

+ «Архитектурно-реставрационная компания» занимается производством и продажей продукции торговой марки «АЛМ», наша компания зарекомендовала себя надёжным производителем продукции для работ по гидроизоляции, ремонту трещин и других дефектов, усилению и восстановлению строительных конструкций из бетона и кирпича современными методами – инъектирования, на объектах гражданского строительства, инфраструктурных объектах и объектах культурного наследия. +

+ +
+
+
+ ); +} diff --git a/app/(default)/contact/page.tsx b/app/(default)/contact/page.tsx new file mode 100644 index 000000000..b81850e60 --- /dev/null +++ b/app/(default)/contact/page.tsx @@ -0,0 +1,25 @@ +export const metadata = { + title: "Контакты - АЛМ", + description: "Свяжитесь с нами", +}; + +export default function Contact() { + return ( +
+
+
+

+ Свяжитесь с нами +

+

+ Телефон: +7 (495) 123-45-67 +

+

+ Email: info@alm-gr.ru +

+ +
+
+
+ ); +} diff --git a/app/(default)/layout.tsx b/app/(default)/layout.tsx index b3731b22e..a1a03a5de 100644 --- a/app/(default)/layout.tsx +++ b/app/(default)/layout.tsx @@ -25,7 +25,7 @@ export default function DefaultLayout({ <>
{children}
-