Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f148346e5 | |||
| 27246a5aaa | |||
| 96596f8d50 | |||
| 1ab52fe963 | |||
| 5e6525ced3 |
@@ -1,68 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "MORPHO - Թվային լուծումներ բիզնեսի աճի համար",
|
title: "MORPHO — թվային լուծումներ բիզնեսի աճի համար", description: "Մարքեթինգ, IT, դիզայն և կրթություն՝ մեկ էկոհամակարգում։ Կառուցում ենք համակարգեր, ոչ պարզապես ծառայություններ։"};
|
||||||
description: "MORPHO web studio. Մարքեթինգ, IT վերլուծում, դիզայն և կրթություն. Մենք կառուցում ենք համակարգեր, ոչ պարզապես ծառայություններ.",
|
|
||||||
keywords: "թվային լուծումներ, մարքեթինգ, IT, դիզայն, կրթություն, բիզնես խորհրդատվություն",
|
|
||||||
openGraph: {
|
|
||||||
title: "MORPHO - Թվային լուծումներ բիզնեսի համար",
|
|
||||||
description: "Մարքեթինգ, IT, դիզայն և կրթություն՝ մեկ էկոհամակարգում։",
|
|
||||||
type: "website",
|
|
||||||
siteName: "MORPHO",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWBsybEoMJ3FPQGOLn6bwcclIP/uploaded-1772698837735-y4s19q87.png",
|
|
||||||
alt: "MORPHO Web Studio",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "MORPHO - Թվային լուծումներ",
|
|
||||||
description: "Web studio. Մարքեթինգ, IT, դիզայն, կրթություն",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWBsybEoMJ3FPQGOLn6bwcclIP/uploaded-1772698837735-y4s19q87.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="hy">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1430,7 +1380,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
|||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
|
import { Briefcase, Code, Palette, Target, BookOpen, Zap } from "lucide-react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -23,9 +24,11 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
title: "Բրենդ", items: [
|
title: "Բրենդ", items: [
|
||||||
{
|
{
|
||||||
label: "MORPHO — թվային լուծումներ բիզնեսի աճի համար։", href: "#"},
|
label: "MORPHO — թվային լուծումներ բիզնեսի աճի համար։", href: "#"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Մարքեთինգ, IT, դիզայն և կրթություն մեկ էկոհամակարգում։", href: "#"},
|
label: "Մարքեթինգ, IT, դիզայն և կրթություն մեկ էկոհամակարգում։", href: "#"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -41,7 +44,8 @@ export default function HomePage() {
|
|||||||
title: "Ծառայություններ", items: [
|
title: "Ծառայություններ", items: [
|
||||||
{ label: "SMM / Մարքեթինգ", href: "/services/smm-marketing" },
|
{ label: "SMM / Մարքեթինգ", href: "/services/smm-marketing" },
|
||||||
{
|
{
|
||||||
label: "Բիզնես Խորհրդատվություն", href: "/services/business-consulting"},
|
label: "Բիզնես Խորհրդատվություն", href: "/services/business-consulting"
|
||||||
|
},
|
||||||
{ label: "Դիզայն", href: "/services/design" },
|
{ label: "Դիզայն", href: "/services/design" },
|
||||||
{ label: "IT Ծառայություններ", href: "/services/it" },
|
{ label: "IT Ծառայություններ", href: "/services/it" },
|
||||||
{ label: "MORPHO Academy", href: "/services/academy" },
|
{ label: "MORPHO Academy", href: "/services/academy" },
|
||||||
@@ -76,7 +80,8 @@ export default function HomePage() {
|
|||||||
brandName="MORPHO"
|
brandName="MORPHO"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Անվճար խորհրդատվություն", href: "#contact"}}
|
text: "Անվճար խորհրդատվություն", href: "#contact"
|
||||||
|
}}
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -91,37 +96,47 @@ export default function HomePage() {
|
|||||||
leftCarouselItems={[
|
leftCarouselItems={[
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-69728.jpg?_wi=1", imageAlt: "Digital design portfolio"},
|
"http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-69728.jpg?_wi=1", imageAlt: "Digital design portfolio"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/colleagues-working-desk_53876-46929.jpg", imageAlt: "Marketing campaign work"},
|
"http://img.b2bpic.net/free-photo/colleagues-working-desk_53876-46929.jpg", imageAlt: "Marketing campaign work"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-16377.jpg?_wi=1", imageAlt: "Mobile app development"},
|
"http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-16377.jpg?_wi=1", imageAlt: "Mobile app development"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg", imageAlt: "Analytics dashboard"},
|
"http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg", imageAlt: "Analytics dashboard"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
rightCarouselItems={[
|
rightCarouselItems={[
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/aerial-view-man-working-computer_53876-31625.jpg?_wi=1", imageAlt: "Social media content"},
|
"http://img.b2bpic.net/free-photo/aerial-view-man-working-computer_53876-31625.jpg?_wi=1", imageAlt: "Social media content"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/technician-looking-ui-computer-monitor-executing-programming-code_482257-125130.jpg?_wi=1", imageAlt: "IT development project"},
|
"http://img.b2bpic.net/free-photo/technician-looking-ui-computer-monitor-executing-programming-code_482257-125130.jpg?_wi=1", imageAlt: "IT development project"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-psd/go-cashless-website-template_23-2149111230.jpg", imageAlt: "Web design showcase"},
|
"http://img.b2bpic.net/free-psd/go-cashless-website-template_23-2149111230.jpg", imageAlt: "Web design showcase"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=1", imageAlt: "Business consulting"},
|
"http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=1", imageAlt: "Business consulting"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Անվճար խորհրդատվություն", href: "#contact"},
|
text: "Անվճար խորհրդատվություն", href: "#contact"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: "Տեսնել ծառայությունները", href: "#services"},
|
text: "Տեսնել ծառայությունները", href: "#services"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -132,6 +147,7 @@ export default function HomePage() {
|
|||||||
title="Մեր Ծառայությունները"
|
title="Մեր Ծառայությունները"
|
||||||
description="Ամբողջական թվային լուծումներ ձեր բիզնեսի բոլոր կարիքների համար"
|
description="Ամբողջական թվային լուծումներ ձեր բիզնեսի բոլոր կարիքների համար"
|
||||||
tag="Ծառայություններ"
|
tag="Ծառայություններ"
|
||||||
|
tagIcon={Briefcase}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -139,27 +155,33 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "SMM / Մարքեթինգ", description: "Արդյունքներին ուղղված մարքեթինգ և գովազդ", imageSrc:
|
title: "SMM / Մարքեթինգ", description: "Արդյունքներին ուղղված մարքեթինգ և գովազդ", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/aerial-view-man-working-computer_53876-31625.jpg?_wi=2"},
|
"http://img.b2bpic.net/free-photo/aerial-view-man-working-computer_53876-31625.jpg?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Բիզնես Խորհրդատվություն", description: "Ռազմավարություն, աճ, թվայնացում", imageSrc:
|
title: "Բիզնես Խորհրդատվություն", description: "Ռազմավարություն, աճ, թվայնացում", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=2"},
|
"http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Դիզայն", description: "Բրենդինգ, UX/UI, վիզուալ լուծումներ", imageSrc:
|
title: "Դիզայն", description: "Բրենդինգ, UX/UI, վիզուալ լուծումներ", imageSrc:
|
||||||
"http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-69728.jpg?_wi=2"},
|
"http://img.b2bpic.net/free-vector/gradient-ui-ux-landing-page_52683-69728.jpg?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
title: "IT Ծառայություններ", description: "Վեբ, մոբայլ, ավտոմատացում, սերվերներ", imageSrc:
|
title: "IT Ծառայություններ", description: "Վեբ, մոբայլ, ավտոմատացում, սերվերներ", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/technician-looking-ui-computer-monitor-executing-programming-code_482257-125130.jpg?_wi=2"},
|
"http://img.b2bpic.net/free-photo/technician-looking-ui-computer-monitor-executing-programming-code_482257-125130.jpg?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 5,
|
id: 5,
|
||||||
title: "MORPHO Academy", description: "Կրթություն՝ իրական հմտությունների համար", imageSrc:
|
title: "MORPHO Academy", description: "Կրթություն՝ իրական հմտությունների համար", imageSrc:
|
||||||
"http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-16377.jpg?_wi=2"},
|
"http://img.b2bpic.net/free-vector/running-mobile-app-infographic-flat-design_52683-16377.jpg?_wi=2"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Մանրամասներ", href: "#services"},
|
text: "Մանրամասներ", href: "#services"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -170,18 +192,23 @@ export default function HomePage() {
|
|||||||
title="Մեր Արժեքները"
|
title="Մեր Արժեքները"
|
||||||
description="Այն սկզբունքները, որոնք մեզ շարժում են"
|
description="Այն սկզբունքները, որոնք մեզ շարժում են"
|
||||||
tag="Գործի Բանալիներ"
|
tag="Գործի Բանալիներ"
|
||||||
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "Համակարգային", description: "Համակարգային մոտեցում"},
|
id: "1", value: "Համակարգային", description: "Համակարգային մոտեցում"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "Փորձ", description: "Իրական փորձ և արդյունքներ"},
|
id: "2", value: "Փորձ", description: "Իրական փորձ և արդյունքներ"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", value: "Տեխ", description: "Ժամանակակից տեխնոլոգիաներ"},
|
id: "3", value: "Տեխ", description: "Ժամանակակից տեխնոլոգիաներ"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", value: "Երկարաժամ", description: "Երկարաժամկետ համագործակցություն"},
|
id: "4", value: "Երկարաժամ", description: "Երկարաժամկետ համագործակցություն"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -193,11 +220,13 @@ export default function HomePage() {
|
|||||||
title="Մեր Գործընկերները"
|
title="Մեր Գործընկերները"
|
||||||
description="Հաշվվել վրա կազմակերպությունների կողմից"
|
description="Հաշվվել վրա կազմակերպությունների կողմից"
|
||||||
tag="Վստահ կամ"
|
tag="Վստահ կամ"
|
||||||
|
tagIcon={Target}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Google", "Microsoft", "Apple", "Amazon", "Facebook", "Instagram", "LinkedIn"]}
|
"Google", "Microsoft", "Apple", "Amazon", "Facebook", "Instagram", "LinkedIn"
|
||||||
|
]}
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -208,11 +237,13 @@ export default function HomePage() {
|
|||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text", content:
|
type: "text", content:
|
||||||
"Ուզո՞ւմ եք հասկանալ՝ ինչ լուծում է պետք հենց ձեր բիզնեսին"},
|
"Ուզո՞ւմ եք հասկանալ՝ ինչ լուծում է պետք հենց ձեր բիզնեսին"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Պատվիրել խորհրդատվություն", href: "#contact"},
|
text: "Պատվիրել խորհրդատվություն", href: "#contact"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -227,4 +258,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user