initial commit

This commit is contained in:
Carlos Gutierrez
2025-09-02 23:12:22 -04:00
commit 3029582bb4
19 changed files with 14951 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { View, Text } from "react-native";
import {
bioTitle,
bioText,
} from "../../utils/constants";
import Image from "../molecules/Image";
import styles from "../../styles/bioSketch.module";
const Content = () => {
return (
<>
<View style={styles.bioSection}>
<Text style={styles.bioTitle}>{bioTitle}</Text>
<Text style={styles.bioText}>{bioText}</Text>
<Image />
</View>
</>
);
};
export default Content;

View File

@@ -0,0 +1,15 @@
import { View, Text } from "react-native";
import { currentCourse } from "../../utils/constants";
import styles from "../../styles/bioSketch.module";
const Footer = () => {
return (
<>
<View style={styles.courseInfo}>
<Text style={styles.courseText}>{currentCourse}</Text>
</View>
</>
);
};
export default Footer;

View File

@@ -0,0 +1,17 @@
import { Text } from "react-native";
import {
title,
courseId,
} from "../../utils/constants";
import styles from "../../styles/bioSketch.module";
const Title = () => {
return (
<>
<Text style={styles.welcomeText}>{title}</Text>
<Text style={styles.welcomeText}>{courseId}</Text>
</>
);
};
export default Title;