diff --git a/src/components/news/News.tsx b/src/components/news/News.tsx
new file mode 100644
index 0000000..c715b18
--- /dev/null
+++ b/src/components/news/News.tsx
@@ -0,0 +1,40 @@
+// Modules
+import { Link } from 'react-router-dom';
+// Images
+import placeholder from '../../assets/images/placeholder.jpg';
+import { ReactComponent as ArrRight } from '../../assets/icons/arrow-right.svg';
+import NewsCategory from '../global/NewsCategory';
+import NewsDate from '../global/NewsDate';
+
+const News = () => {
+ return (
+
+
+
+

+
+
+
+
+ Президент Туркменистана провёл рабочее совещание по цифровой системе
+
+
+
+
+
+
+ Государственному объединению «Türkmen atlary» разрешено заключить дополнительное
+ соглашение с ИП «Röwşen». Государственному объединению «Türkmen atlary» разрешено
+ заключить дополнительное соглашение с ИП «Röwşen»
+
+
+
+
прочитать все
+
+
+
+
+ );
+};
+
+export default News;
diff --git a/src/styles/_news.scss b/src/styles/_news.scss
new file mode 100644
index 0000000..1a4d6fc
--- /dev/null
+++ b/src/styles/_news.scss
@@ -0,0 +1,45 @@
+.news-wrapper {
+ display: flex;
+ // align-items: center;
+ gap: 1.6rem;
+}
+
+.news-info {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ align-items: flex-end;
+}
+
+.news-info-inner {
+ display: flex;
+ flex-direction: column;
+ gap: 1.2rem;
+}
+
+.news-title {
+ font-size: 2.4rem;
+ font-weight: 700;
+ @include raleway;
+}
+
+.news-status {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.news-category {
+ display: inline-block;
+ color: $main;
+ text-transform: uppercase;
+ font-weight: 400;
+ font-size: 1.4rem;
+ @include roboto;
+}
+
+.news-text {
+ font-size: 1.4rem;
+ font-weight: 400;
+ color: $body;
+}