add title and description in head , responsive home page
This commit is contained in:
@@ -5,7 +5,6 @@ export interface IProjectCardProps {
|
||||
title: string;
|
||||
fa_title?: string;
|
||||
imageSrc: string;
|
||||
link: string;
|
||||
}
|
||||
|
||||
export const projects = [
|
||||
@@ -13,42 +12,43 @@ export const projects = [
|
||||
id:'1',
|
||||
title: 'Sustainable Practices Reducing Waste in Industrial Production',
|
||||
fa_title: 'روشهای پایدار برای کاهش ضایعات در تولید صنعتی',
|
||||
imageSrc: images.projectImg_1.src,
|
||||
link: '#',
|
||||
imageSrc: `/images/project1.jpeg`,
|
||||
},
|
||||
{
|
||||
id:'2',
|
||||
title: 'Advanced Robotics Revolutionizing Industrial Workflows',
|
||||
fa_title: 'رباتیک پیشرفته و تحول فرآیندهای صنعتی',
|
||||
imageSrc: images.projectImg_1.src,
|
||||
link: '#',
|
||||
imageSrc: `/images/project2.jpeg`,
|
||||
},
|
||||
{
|
||||
id:'3',
|
||||
title: 'Top Benefits of the Robotics in Manufacturing',
|
||||
fa_title: 'مزایای اصلی استفاده از رباتیک در تولید',
|
||||
imageSrc: images.projectImg_1.src,
|
||||
link: '#',
|
||||
imageSrc: `/images/project3.jpeg`,
|
||||
},
|
||||
{
|
||||
id:'4',
|
||||
title: 'Leveraging Data Analytics for Smarter Production',
|
||||
fa_title: 'استفاده از تحلیل داده برای تولید هوشمندتر',
|
||||
imageSrc: images.projectImg_1.src,
|
||||
link: '#',
|
||||
imageSrc: `/images/project4.jpeg`,
|
||||
|
||||
},
|
||||
{
|
||||
id:'5',
|
||||
title: 'Reducing Operational Costs Through Automation',
|
||||
fa_title: 'کاهش هزینهها با اتوماسیون',
|
||||
imageSrc: '/images/post5.jpg',
|
||||
link: '#',
|
||||
imageSrc: `/images/project1.jpeg`,
|
||||
},
|
||||
{
|
||||
id:'6',
|
||||
title: 'The Advantages of Customized Manufacturing Solutions',
|
||||
fa_title: 'مزایای راهحلهای سفارشیسازی در تولید',
|
||||
imageSrc: '/images/post6.jpg',
|
||||
link: '#',
|
||||
imageSrc: `/images/project1.jpeg`,
|
||||
},
|
||||
] as IProjectCardProps[]
|
||||
|
||||
export function generateProjects(
|
||||
): IProjectCardProps[] {
|
||||
return [...projects, ...projects, ...projects].map((e, i)=>({...e, id:String(i+1)}))
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user